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

8
Collectable.java Normal file
View File

@@ -0,0 +1,8 @@
import java.awt.Rectangle;
import javax.swing.ImageIcon;
public class Collectable extends Collidable{
public Collectable(int x, int y, int w, int h,ImageIcon i){
super(x,y,w,h,i);
}
}