package com.last.commit import com.last.commit.audio.SoundEngine 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 soundEngine: SoundEngine, var map: MapState? = null, val dialogStage: DialogStage ) { }