diff --git a/core/src/netwerkprog/game/client/Map.java b/core/src/netwerkprog/game/client/Map.java index cbb8e56..d22de9e 100644 --- a/core/src/netwerkprog/game/client/Map.java +++ b/core/src/netwerkprog/game/client/Map.java @@ -1,8 +1,10 @@ package netwerkprog.game.client; +/** + * Map class to hold a 2d array of tiles which will specify the map + */ public class Map { private char[][] map; - private int tileWidth = 16; public Map(int size) { this(size,size); @@ -12,14 +14,6 @@ public class Map { this.map = new char[height][width]; } - public void setTileWidth(int tileWidth) { - this.tileWidth = tileWidth; - } - - public int getTileWidth() { - return tileWidth; - } - public char[][] get() { return this.map; }