Files
galaxy-game/pkg/model/command/command.go
T
2025-09-28 22:43:27 +03:00

16 lines
163 B
Go

package command
type Command struct {
FromRace string
}
type CommandAlly struct {
Command
ToRace string
}
type CommandWar struct {
Command
ToRace string
}