Files
galaxy-game/pkg/model/game/science.go
T
2025-09-26 01:38:49 +03:00

13 lines
275 B
Go

package game
import "github.com/google/uuid"
type Science struct {
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"`
}