diff options
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/MaxonGame.java | 4 | ||||
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screens/AssetLoadingScreen.java (renamed from core/src/com/ilotterytea/maxoning/screen/AssetLoadingScreen.java) | 4 | ||||
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screens/MenuScreen.java (renamed from core/src/com/ilotterytea/maxoning/screen/MenuScreen.java) | 2 | ||||
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screens/SplashScreen.java (renamed from core/src/com/ilotterytea/maxoning/screen/SplashScreen.java) | 3 | ||||
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/ui/AnimatedImage.java (renamed from core/src/com/ilotterytea/maxoning/anim/AnimatedImage.java) | 2 |
5 files changed, 6 insertions, 9 deletions
diff --git a/core/src/com/ilotterytea/maxoning/MaxonGame.java b/core/src/com/ilotterytea/maxoning/MaxonGame.java index 9a24256..84bc6e6 100644 --- a/core/src/com/ilotterytea/maxoning/MaxonGame.java +++ b/core/src/com/ilotterytea/maxoning/MaxonGame.java @@ -1,11 +1,9 @@ package com.ilotterytea.maxoning; import com.badlogic.gdx.Game; -import com.badlogic.gdx.Gdx; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.g2d.SpriteBatch; -import com.ilotterytea.maxoning.screen.AssetLoadingScreen; -import com.ilotterytea.maxoning.screen.SplashScreen; +import com.ilotterytea.maxoning.screens.AssetLoadingScreen; public class MaxonGame extends Game { public SpriteBatch batch; diff --git a/core/src/com/ilotterytea/maxoning/screen/AssetLoadingScreen.java b/core/src/com/ilotterytea/maxoning/screens/AssetLoadingScreen.java index 0db18e6..e3d4c29 100644 --- a/core/src/com/ilotterytea/maxoning/screen/AssetLoadingScreen.java +++ b/core/src/com/ilotterytea/maxoning/screens/AssetLoadingScreen.java @@ -1,4 +1,4 @@ -package com.ilotterytea.maxoning.screen; +package com.ilotterytea.maxoning.screens; import com.badlogic.gdx.*; import com.badlogic.gdx.audio.Music; @@ -14,7 +14,7 @@ import com.badlogic.gdx.scenes.scene2d.ui.Skin; import com.badlogic.gdx.utils.Timer; import com.badlogic.gdx.utils.viewport.FillViewport; import com.ilotterytea.maxoning.MaxonGame; -import com.ilotterytea.maxoning.anim.AnimatedImage; +import com.ilotterytea.maxoning.ui.AnimatedImage; import com.ilotterytea.maxoning.anim.SpriteUtils; import java.util.Arrays; diff --git a/core/src/com/ilotterytea/maxoning/screen/MenuScreen.java b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java index be8e1f4..88c8d5a 100644 --- a/core/src/com/ilotterytea/maxoning/screen/MenuScreen.java +++ b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java @@ -1,4 +1,4 @@ -package com.ilotterytea.maxoning.screen; +package com.ilotterytea.maxoning.screens; import com.badlogic.gdx.*; import com.badlogic.gdx.audio.Music; diff --git a/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java b/core/src/com/ilotterytea/maxoning/screens/SplashScreen.java index ff3b1a3..27951fb 100644 --- a/core/src/com/ilotterytea/maxoning/screen/SplashScreen.java +++ b/core/src/com/ilotterytea/maxoning/screens/SplashScreen.java @@ -1,4 +1,4 @@ -package com.ilotterytea.maxoning.screen; +package com.ilotterytea.maxoning.screens; import com.badlogic.gdx.*; import com.badlogic.gdx.audio.Music; @@ -9,7 +9,6 @@ import com.badlogic.gdx.scenes.scene2d.actions.Actions; import com.badlogic.gdx.scenes.scene2d.ui.Image; import com.badlogic.gdx.scenes.scene2d.ui.Label; import com.badlogic.gdx.scenes.scene2d.ui.Skin; -import com.badlogic.gdx.utils.Timer; import com.badlogic.gdx.utils.viewport.FillViewport; import com.ilotterytea.maxoning.MaxonConstants; import com.ilotterytea.maxoning.MaxonGame; diff --git a/core/src/com/ilotterytea/maxoning/anim/AnimatedImage.java b/core/src/com/ilotterytea/maxoning/ui/AnimatedImage.java index 8da1c19..521059e 100644 --- a/core/src/com/ilotterytea/maxoning/anim/AnimatedImage.java +++ b/core/src/com/ilotterytea/maxoning/ui/AnimatedImage.java @@ -1,4 +1,4 @@ -package com.ilotterytea.maxoning.anim; +package com.ilotterytea.maxoning.ui; import com.badlogic.gdx.graphics.g2d.Animation; import com.badlogic.gdx.graphics.g2d.TextureRegion; |
