Files
galaxy-game/pkg/model/game/race.go
T
Ilia Denisov 7d93176031 use float64
2025-09-23 22:27:09 +03:00

23 lines
300 B
Go

package game
type Race struct {
Name string
Killed bool
Votes float64
VoteFor string
Drive float64
Weapons float64
Shields float64
Cargo float64
}
func (r Race) FlightDistance() float64 {
return r.Drive * 40
}
func (r Race) VisibilityDistance() float64 {
return r.Drive * 30
}