diff --git a/core/src/netwerkprog/game/client/MainGame.java b/core/src/netwerkprog/game/client/MainGame.java index 1a3396a..8f2e484 100644 --- a/core/src/netwerkprog/game/client/MainGame.java +++ b/core/src/netwerkprog/game/client/MainGame.java @@ -3,18 +3,13 @@ package netwerkprog.game.client; import com.badlogic.gdx.ApplicationAdapter; import com.badlogic.gdx.Files; import com.badlogic.gdx.Gdx; -import com.badlogic.gdx.Input; -import com.badlogic.gdx.InputProcessor; import com.badlogic.gdx.audio.Music; -import com.badlogic.gdx.graphics.Camera; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.g2d.SpriteBatch; -import com.badlogic.gdx.math.Vector3; -import netwerkprog.game.client.Client; import netwerkprog.game.client.game.map.Map; import netwerkprog.game.client.game.map.MapRenderer; -import netwerkprog.game.client.map.GameInputProcessor; +import netwerkprog.game.client.game.map.GameInputProcessor; import netwerkprog.game.util.graphics.FrameRate; public class MainGame extends ApplicationAdapter{ diff --git a/core/src/netwerkprog/game/client/map/GameInputProcessor.java b/core/src/netwerkprog/game/client/game/map/GameInputProcessor.java similarity index 99% rename from core/src/netwerkprog/game/client/map/GameInputProcessor.java rename to core/src/netwerkprog/game/client/game/map/GameInputProcessor.java index 240a901..061d867 100644 --- a/core/src/netwerkprog/game/client/map/GameInputProcessor.java +++ b/core/src/netwerkprog/game/client/game/map/GameInputProcessor.java @@ -1,4 +1,4 @@ -package netwerkprog.game.client.map; +package netwerkprog.game.client.game.map; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input; diff --git a/core/src/netwerkprog/game/client/map/GameTile.java b/core/src/netwerkprog/game/client/game/map/GameTile.java similarity index 97% rename from core/src/netwerkprog/game/client/map/GameTile.java rename to core/src/netwerkprog/game/client/game/map/GameTile.java index a809133..964fe9f 100644 --- a/core/src/netwerkprog/game/client/map/GameTile.java +++ b/core/src/netwerkprog/game/client/game/map/GameTile.java @@ -1,4 +1,4 @@ -package netwerkprog.game.client.map; +package netwerkprog.game.client.game.map; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.math.Rectangle; diff --git a/core/src/netwerkprog/game/client/game/map/MapRenderer.java b/core/src/netwerkprog/game/client/game/map/MapRenderer.java index 5fdddb7..86f91d4 100644 --- a/core/src/netwerkprog/game/client/game/map/MapRenderer.java +++ b/core/src/netwerkprog/game/client/game/map/MapRenderer.java @@ -4,7 +4,6 @@ import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.SpriteBatch; -import netwerkprog.game.client.map.GameTile; import netwerkprog.game.util.graphics.Renderable; import com.badlogic.gdx.graphics.g2d.TextureRegion;