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

15
Projectile.java Normal file
View File

@@ -0,0 +1,15 @@
import javax.swing.ImageIcon;
public class Projectile extends Collidable {
int xVelo;
public Projectile(int x, int y, int w, int h, int curLevel, int direction){
super(x,y,w,h,new ImageIcon("Sprites/Projectiles/" + curLevel + ".png"));
xVelo = 10 * direction;
}
public void move(){
this.x += xVelo;
this.rect.x = this.x;
}
}