Initial commit

This commit is contained in:
CoolGuy27
2026-02-27 20:10:29 +00:00
commit 3739ae0d65
12 changed files with 202 additions and 0 deletions

16
Tile.java Normal file
View File

@@ -0,0 +1,16 @@
import java.awt.Graphics;
public class Tile {
int x,y,width,height;
public Tile(int x, int y, int width, int height){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
public void draw(Graphics g){
g.fillRect(x,y,width,height);
}
}