Examples of TurnTimed


Examples of civquest.core.turn.TurnTimed

  public void execute() {
    notifyBefore();

    MapData mapData = Game.getMapData();
    if (mapData.isMapObjectTimed(timedMO)) {
      TurnTimed mo = (TurnTimed)(mapData.getMapObject(timedMO));
      mo.setTime(time);
    } else {
      throw new ClassCastException("SetMapObjectTime must be feeded with"
                     + " the id of a MapObject implementing TurnTimed!!!");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.