show dialog when door is closed
parent
e0ca135712
commit
739cebf937
@ -1,13 +1,17 @@
|
||||
import com.last.commit.inventory.Inventory
|
||||
import com.last.commit.config.GameSettings
|
||||
package com.last.commit
|
||||
|
||||
import com.last.commit.audio.SoundEngine
|
||||
import com.last.commit.config.GameSettings
|
||||
import com.last.commit.config.TimeTravelAssetManager
|
||||
import com.last.commit.inventory.Inventory
|
||||
import com.last.commit.map.MapState
|
||||
import com.last.commit.stages.DialogStage
|
||||
|
||||
data class GameState(
|
||||
val inventory: Inventory,
|
||||
val settings: GameSettings,
|
||||
val soundEngine: SoundEngine,
|
||||
val assetManager: TimeTravelAssetManager,
|
||||
var map: MapState? = null
|
||||
var map: MapState? = null,
|
||||
val dialogStage: DialogStage
|
||||
)
|
Loading…
Reference in New Issue