Started on platforms. Updated player movement.

This commit is contained in:
Gnarwhal 2020-04-19 06:54:11 -07:00 committed by Gnarwhal
parent d5ac654043
commit 814f49fd4b
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
24 changed files with 1035 additions and 717 deletions

View file

@ -8,16 +8,20 @@ public class GamePanel {
private Window window;
private Camera camera;
private Player player;
public GamePanel(Window window, Camera camera) {
this.window = window;
this.camera = camera;
player = new Player(window, camera);
}
public void update() {
player.update();
}
public void render() {
player.render();
}
}