28 lines
353 B
Java
28 lines
353 B
Java
package ei.game.player;
|
|
|
|
import ei.game.scene.buildings.Building;
|
|
|
|
/**
|
|
* Mother nature
|
|
*
|
|
* @author Ziver
|
|
*
|
|
*/
|
|
public class GaiaPlayer extends Player{
|
|
|
|
@Override
|
|
public Building getCC() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean defeated() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void endGame(int s) {
|
|
|
|
}
|
|
|
|
}
|