Package civquest.map.gameChange

Examples of civquest.map.gameChange.SetPopulation


            ConstructCity newCityChange
              = new ConstructCity(field.getPosition(),
                        Game.getGame().getActiveNation());
            newCityChange.execute();

            SetPopulation setPopulation
              = new SetPopulation(field.getPosition(), 1000);
            setPopulation.execute();

            SetFieldRuledByCity change
              = new SetFieldRuledByCity(field.getPosition(),
                            newCityChange.getCity(),
                            false);
View Full Code Here


    ConstructCity constructCity = new ConstructCity(new Coordinate(x, y),
                            nation);
    constructCity.execute();

    SetPopulation setPopulation
      = new SetPopulation(new Coordinate(x, y), 1000);
    setPopulation.execute();

    SetFieldRuledByCity change
      = new SetFieldRuledByCity(new Coordinate(x, y),
                    constructCity.getCity(), false);
    change.execute();
View Full Code Here

TOP

Related Classes of civquest.map.gameChange.SetPopulation

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.