getZPMCount() added to Player

This commit is contained in:
ericnerdo 2016-04-26 00:43:58 +02:00
parent 0e5681ef7d
commit e9303c68e4

View File

@ -30,4 +30,8 @@ public class Player extends PlayerBase {
public void shootStargate(Stargate stargate) {
this.currentTile.getAdjacentTile(facingDirection).spawnStargate(stargate, facingDirection);
}
public int getZPMCount(){
return zpmContainer.size();
}
}