lol
This commit is contained in:
parent
f7c37665e1
commit
1ffdb1015f
4 changed files with 29 additions and 4 deletions
|
|
@ -1,13 +1,14 @@
|
|||
package ei.game.scene.buildings;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Queue;
|
||||
|
||||
import ei.game.scene.GameEntity;
|
||||
import ei.game.scene.units.Unit;
|
||||
|
||||
public abstract class Building extends GameEntity{
|
||||
private ArrayList<Unit> availableUnits;
|
||||
private ArrayList<Unit> buildQueue;
|
||||
private Queue<Unit> buildQueue;
|
||||
|
||||
public Building(int l) {
|
||||
super(l);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue