9 lines
82 B
Go
9 lines
82 B
Go
package game
|
|
|
|
type Map struct {
|
|
Width uint32
|
|
Height uint32
|
|
|
|
Planet []Planet
|
|
}
|