Package civquest.units.gameChange

Examples of civquest.units.gameChange.MoveUnit


    List<GameChange> retList = new ArrayList<GameChange>();
    for (int n = 0; n < units.length; n++) {
      Unit currUnit = game.getMapData().getUnit(units[n]);
      int newTime = timeRules.getTimeAfterAction(timeForMove[n],
                             currUnit);
      retList.add(new MoveUnit(to, units[n], newTime));
    }

    return retList;
  }
View Full Code Here

TOP

Related Classes of civquest.units.gameChange.MoveUnit

Copyright © 2018 www.massapicom. 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.