last_light/game/world/dungeon.go

12 lines
153 B
Go
Raw Normal View History

2024-05-06 18:59:14 +03:00
package world
type dungeonLevel struct {
2024-05-06 20:43:35 +03:00
groundLevel *Map
2024-05-06 18:59:14 +03:00
entityLevel *EntityMap
itemLevel *Map
}
type Dungeon struct {
levels []*dungeonLevel
}