Files
galaxy-game/pkg/model/game/game.go
T
2025-09-23 18:36:22 +03:00

10 lines
107 B
Go

package game
import "github.com/google/uuid"
type Game struct {
ID uuid.UUID
Map Map
Race []Race
}