saving new turn

This commit is contained in:
Ilia Denisov
2025-09-26 01:38:49 +03:00
parent 6d87ea6086
commit 282150a253
13 changed files with 170 additions and 57 deletions
+8 -5
View File
@@ -1,9 +1,12 @@
package game
import "github.com/google/uuid"
type Science struct {
Name string
Drive float64
Weapons float64
Shields float64
Cargo float64
ID uuid.UUID `json:"id"`
Name string `json:"name"`
Drive float64 `json:"drive"`
Weapons float64 `json:"weapons"`
Shields float64 `json:"shields"`
Cargo float64 `json:"cargo"`
}