Files
galaxy-game/internal/model/game/science.go
T
2026-02-03 23:41:18 +02:00

15 lines
280 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"`
}