d9c8de27e5
* refactor: executors and routers
17 lines
217 B
Go
17 lines
217 B
Go
package game
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type State struct {
|
|
ID uuid.UUID
|
|
Turn uint
|
|
Stage uint
|
|
Players []PlayerState
|
|
}
|
|
|
|
type PlayerState struct {
|
|
ID uuid.UUID
|
|
Name string
|
|
Extinct bool
|
|
}
|