Files
american-identity-project/Collectable.java
2026-04-15 19:50:15 -05:00

8 lines
200 B
Java

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);
}
}