Changed screen size
parent
1dbb137d33
commit
588f7a5263
|
@ -19,8 +19,8 @@ import javax.swing.*;
|
||||||
public class GamePanel extends JPanel implements Runnable, KeyListener{
|
public class GamePanel extends JPanel implements Runnable, KeyListener{
|
||||||
|
|
||||||
//dimensions of window
|
//dimensions of window
|
||||||
public static final int GAME_WIDTH = 1200;
|
public static final int GAME_WIDTH = 1225;
|
||||||
public static final int GAME_HEIGHT = 600;
|
public static final int GAME_HEIGHT = 630;
|
||||||
|
|
||||||
public Thread gameThread;
|
public Thread gameThread;
|
||||||
public Image image;
|
public Image image;
|
||||||
|
|
|
@ -3,6 +3,7 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class MapReader {
|
public class MapReader {
|
||||||
public static void inputMap(ArrayList<Tile> map, File file){
|
public static void inputMap(ArrayList<Tile> map, File file){
|
||||||
|
int x = 0;
|
||||||
|
int y = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue