Files
galaxy-game/game/internal/model/game/state.go
T
2026-05-03 07:59:03 +02:00

20 lines
280 B
Go

package game
import "github.com/google/uuid"
type State struct {
ID uuid.UUID
Turn uint
Stage uint
Players []PlayerState
Finished bool
}
type PlayerState struct {
ID uuid.UUID
RaceName string
Planets uint
Population Float
Extinct bool
}