2007-03-29 23:21:00 +00:00
|
|
|
package ei.game.player;
|
|
|
|
|
|
2007-04-23 16:26:39 +00:00
|
|
|
import ei.game.scene.buildings.Building;
|
|
|
|
|
import ei.game.scene.buildings.CommandCenter;
|
2007-03-29 23:21:00 +00:00
|
|
|
|
2007-04-05 12:45:22 +00:00
|
|
|
public class HumanPlayer extends Player{
|
2007-04-23 16:26:39 +00:00
|
|
|
private CommandCenter cc;
|
2007-04-04 14:45:44 +00:00
|
|
|
|
2007-04-05 12:45:22 +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
|
|
|
}
|
2007-04-05 12:45:22 +00:00
|
|
|
|
2007-03-29 23:21:00 +00:00
|
|
|
}
|