1
0
Fork 0
This repository has been archived on 2024-04-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Global-Game-Jam-2016/global game jam/src/Entity/ShootingPattern.java
2016-03-15 16:03:24 +01:00

18 lines
350 B
Java

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