16 lines
163 B
Go
16 lines
163 B
Go
package command
|
|
|
|
type Command struct {
|
|
FromRace string
|
|
}
|
|
|
|
type CommandAlly struct {
|
|
Command
|
|
ToRace string
|
|
}
|
|
|
|
type CommandWar struct {
|
|
Command
|
|
ToRace string
|
|
}
|