new game, fs repo layer

This commit is contained in:
Ilia Denisov
2025-09-23 18:36:22 +03:00
parent 84578dc61c
commit 4d733ae741
18 changed files with 880 additions and 54 deletions
+9
View File
@@ -0,0 +1,9 @@
package game
import "github.com/google/uuid"
type Game struct {
ID uuid.UUID
Map Map
Race []Race
}