8f982278d2
* add multimodule * re-package modules
8 lines
133 B
Go
8 lines
133 B
Go
package game
|
|
|
|
type Map struct {
|
|
Width uint32 `json:"width"`
|
|
Height uint32 `json:"height"`
|
|
Planet []Planet `json:"planets"`
|
|
}
|