This commit is contained in:
anton.gurov
2019-10-25 18:47:10 +03:00
parent ad6fb0c03e
commit ed5a425dab
11 changed files with 413 additions and 13 deletions

14
engine/gamemap/level.go Normal file
View File

@ -0,0 +1,14 @@
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
}