Package civquest.group.gameChange

Examples of civquest.group.gameChange.MarkField.execute()


                UnmarkField unmarkField = new UnmarkField(group, coords, fieldIDs);
                unmarkField.execute();
            } else {
                //mark fields
                MarkField markField = new MarkField(group, coords, fieldIDs);
                markField.execute();
            }
        }
    }       
}
View Full Code Here


      if (group.getFields().contains(position)) {
                UnmarkField unmarkField = new UnmarkField(group, position);
                unmarkField.execute();
            } else {
                MarkField markField = new MarkField(group, position);
                markField.execute();
            }
    } else {
      Messages.getMessages().info("QuadIsoLayTerrainView", "QMapWarn",
                    "When executing mark-only-field: QuadMap has "
                    + "no game-data");
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.