last_light/game/world/dungeon.go

11 lines
153 B
Go

package world
type dungeonLevel struct {
groundLevel *Map
entityLevel *EntityMap
itemLevel *Map
}
type Dungeon struct {
levels []*dungeonLevel
}