Added a main menu and fixed som things. added explotions to and fixed the economy

This commit is contained in:
Ziver Koc 2007-04-28 22:09:39 +00:00
parent 5bb373573d
commit 88771fad29
56 changed files with 1859 additions and 1999 deletions

View file

@ -39,6 +39,14 @@ public abstract class Player {
unitsNode.remove(u.getNode());
}
public GameEntity getUnit(int i){
return units.get(i);
}
public int unitCount(){
return units.size();
}
public Node getNode(){
return unitsNode;
}