Files
galaxy-game/game/internal/model/game/map.go
T
Ilia Denisov 9ade76e21d fs storage
2026-03-13 21:07:23 +02:00

8 lines
133 B
Go

package game
type Map struct {
Width uint32 `json:"width"`
Height uint32 `json:"height"`
Planet []Planet `json:"planets"`
}