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 }