18 lines
364 B
Java
18 lines
364 B
Java
|
|
package ei.game.scene.buildings;
|
||
|
|
|
||
|
|
import java.util.ArrayList;
|
||
|
|
|
||
|
|
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;
|
||
|
|
|
||
|
|
public Building(int l) {
|
||
|
|
super(l);
|
||
|
|
// TODO Auto-generated constructor stub
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|