14 lines
207 B
Go
14 lines
207 B
Go
package gamemap
|
|
|
|
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
|
|
type Level struct {
|
|
Name string
|
|
Branch string
|
|
Depth int
|
|
MaxRooms int
|
|
Width int
|
|
Height int
|
|
Objects []ecs.Entity
|
|
Tiles [][]*Tile
|
|
} |