test: battle multiple non-crossing enemies

This commit is contained in:
IliaDenisov
2026-02-06 17:21:42 +03:00
parent ef10842dac
commit 449c3273bf
9 changed files with 129 additions and 41 deletions
+9
View File
@@ -39,6 +39,15 @@ func (ts TechSet) Set(t Tech, v float64) TechSet {
return m
}
func NewTechSet() TechSet {
return TechSet{
TechDrive: 1.,
TechWeapons: 1.,
TechShields: 1.,
TechCargo: 1.,
}
}
// TODO: turn's incremental Version
type Game struct {
ID uuid.UUID `json:"id"`