Added files via upload
This commit is contained in:
parent
46ef2d26ee
commit
61a0c5903e
100 changed files with 2445 additions and 0 deletions
18
global game jam/src/Entity/ShootingPattern.java
Normal file
18
global game jam/src/Entity/ShootingPattern.java
Normal file
|
@ -0,0 +1,18 @@
|
|||
package Entity;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class ShootingPattern {
|
||||
|
||||
protected ArrayList<TimedBullet> listTimedBullet = new ArrayList<TimedBullet>();
|
||||
protected int hpFinish;
|
||||
protected long duration;
|
||||
|
||||
public ShootingPattern(){
|
||||
}
|
||||
|
||||
public ArrayList<TimedBullet> getListTimedBullet(){
|
||||
return listTimedBullet;
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue