diff --git a/src/white/game/gfx/Screen.java b/src/white/game/gfx/Screen.java index 79d8dd8..0df0f9c 100644 --- a/src/white/game/gfx/Screen.java +++ b/src/white/game/gfx/Screen.java @@ -18,13 +18,6 @@ public class Screen { public SpriteSheet sheet; - public Screen(int width, int height, SpriteSheet sheet) { - this.width = width; - this.height = height; - this.sheet = sheet; - - pixels = new int[width * height]; - } public void render(int xPos, int yPos, int tile, int colour,int mirrorDir, int scale) {