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