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

6
Moveable.java Normal file
View File

@@ -0,0 +1,6 @@
public interface Moveable{
int JUMP_HEIGHT = 10;
public void moveX(int moveX);
public void moveY(int moveY);
}