diff --git a/core/src/main/kotlin/com/last/commit/Game.kt b/core/src/main/kotlin/com/last/commit/Game.kt index 852e442..0168e2c 100644 --- a/core/src/main/kotlin/com/last/commit/Game.kt +++ b/core/src/main/kotlin/com/last/commit/Game.kt @@ -5,6 +5,7 @@ import com.badlogic.gdx.Game import com.last.commit.config.GameSettings import com.last.commit.inventory.Inventory import com.last.commit.audio.SoundEngine +import com.last.commit.screen.FirstScreen /** [com.badlogic.gdx.ApplicationListener] implementation shared by all platforms. */ class Game : Game() { diff --git a/core/src/main/kotlin/com/last/commit/FirstScreen.kt b/core/src/main/kotlin/com/last/commit/screen/FirstScreen.kt similarity index 99% rename from core/src/main/kotlin/com/last/commit/FirstScreen.kt rename to core/src/main/kotlin/com/last/commit/screen/FirstScreen.kt index dad8a81..52ba93e 100644 --- a/core/src/main/kotlin/com/last/commit/FirstScreen.kt +++ b/core/src/main/kotlin/com/last/commit/screen/FirstScreen.kt @@ -1,4 +1,4 @@ -package com.last.commit +package com.last.commit.screen import GameState import com.badlogic.gdx.Gdx @@ -16,12 +16,13 @@ import com.badlogic.gdx.math.MathUtils import com.badlogic.gdx.math.Vector2 import com.badlogic.gdx.math.Vector3 import com.badlogic.gdx.utils.Json +import com.last.commit.ColorState +import com.last.commit.Player import com.last.commit.config.ActionCommand import com.last.commit.config.GameConfig import com.last.commit.map.Interactable import com.last.commit.map.TimeMap import com.last.commit.stages.InventoryStage -import com.last.commit.audio.GameSoundEffect import com.last.commit.audio.GameMusic import kotlin.math.floor diff --git a/core/src/main/kotlin/com/last/commit/screen/Menu.kt b/core/src/main/kotlin/com/last/commit/screen/Menu.kt new file mode 100644 index 0000000..a37627d --- /dev/null +++ b/core/src/main/kotlin/com/last/commit/screen/Menu.kt @@ -0,0 +1,4 @@ +package com.last.commit.screen + +class Menu { +} \ No newline at end of file