Package civquest.swing.quadmap.genericActions

Examples of civquest.swing.quadmap.genericActions.SetFieldAction


   
    public FunctionAction getFunctionAction(String functionName) {
        if (functionName.equals("build-new-unit")) {
            return new BuildUnitAction(this, this.mainMapView);
        } else if (functionName.equals("set-field")) {
            return new SetFieldAction(this, this.mainMapView, this.registry);
        } else if (functionName.equals("build-new-city")) {
            return new BuildCityAction(this, this.mainMapView);
        } else if (functionName.equals("remove-map-object")) {
                return new RemoveMapObjectAction(this.mainMapView);
        } else {
View Full Code Here

TOP

Related Classes of civquest.swing.quadmap.genericActions.SetFieldAction

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.