Package civquest.group

Examples of civquest.group.Group


   
  /** Implementation of function mark-only-top-unit */
  private void markOnlyTopUnit() {
    if (units.size() > 0) {
      if (quadMap.getGameData() != null) {
        Group group = quadMap.getActiveGroup();
       
        UnmarkAllUnits unmarkAllUnits = new UnmarkAllUnits(group,
                                   quadMap.getGameData());
        unmarkAllUnits.execute();
     
View Full Code Here


  }

  /** Implementation of function mark-additionally-top-unit */
  private void markAdditionallyTopUnit() {
    if (units.size() > 0) {
      Group group = quadMap.getActiveGroup();

      MarkUnit markUnit = new MarkUnit(group, units.get(0));
      markUnit.execute();
    }
    }
View Full Code Here

TOP

Related Classes of civquest.group.Group

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.