mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 12:49:52 +03:00
15 lines
217 B
Go
15 lines
217 B
Go
package world
|
|
|
|
import "mvvasilev/last_light/game/model"
|
|
|
|
type dungeonLevel struct {
|
|
groundLevel Map
|
|
entityLevel *EntityMap
|
|
itemLevel *Map
|
|
}
|
|
|
|
type Dungeon struct {
|
|
player *model.Player
|
|
|
|
levels []*dungeonLevel
|
|
}
|