evil-inside/src/ei/game/player/HumanPlayer.java

19 lines
324 B
Java
Raw Normal View History

package ei.game.player;
2007-04-23 16:26:39 +00:00
import ei.game.scene.buildings.Building;
import ei.game.scene.buildings.CommandCenter;
public class HumanPlayer extends Player{
2007-04-23 16:26:39 +00:00
private CommandCenter cc;
2007-04-04 14:45:44 +00:00
public HumanPlayer(){
2007-04-23 16:26:39 +00:00
super();
cc = new CommandCenter(10,10,this);
2007-04-04 14:45:44 +00:00
}
2007-04-23 16:26:39 +00:00
public Building getCC() {
return cc;
2007-04-04 14:45:44 +00:00
}
}