initial commit

This commit is contained in:
2026-04-15 19:50:15 -05:00
commit b00f8d7d87
59 changed files with 1100 additions and 0 deletions

22
Display.java Normal file
View File

@@ -0,0 +1,22 @@
import javax.swing.*;
import java.awt.Color;
public class Display {
public static void main(String[] args) {
int boardWidth = 800;
int boardHeight = 800;
int tileSize = 20;
JFrame game = new JFrame();
game.setSize(boardWidth, boardHeight);
game.setVisible(true);
game.setLocationRelativeTo(null);
game.setResizable(false);
Platformer platformer = new Platformer(boardWidth, boardHeight, tileSize);
game.add(platformer);
game.pack();
platformer.requestFocus();
}
}