-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDragon.java
31 lines (29 loc) · 990 Bytes
/
Dragon.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import org.newdawn.slick.AppGameContainer;
import org.newdawn.slick.BasicGame;
import org.newdawn.slick.Color;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.Graphics;
import org.newdawn.slick.Image;
import org.newdawn.slick.Input;
import org.newdawn.slick.SlickException;
import org.newdawn.slick.Sound;
import org.newdawn.slick.geom.Rectangle;
import org.newdawn.slick.geom.Vector2f;
public class Dragon extends Enemy
{
public Dragon(Vector2f loc, Vector2f vel, Vector2f size, Icon img)
// throws FileNotFoundException;
// throws IOException;
{
super(true, 30, 10, 3, loc, vel, size, img);
// canFly = true;
// hp = 3; //Can be changed
// this.vel = vel; //Can be changed
// this.size = size; //Can be changed
// atk = hp;
// this.loc = loc;
// def = 3; //Can be changed
// Icon img = new Icon(/* Poopy Icon (Use png, that allows see through shit)*/);
// this.img = img;
}
}