Examples of EntityWife


Examples of colonies.src.citizens.EntityWife

          // Utility.Debug(townName + " spawner triggered");
          // Choose citizen type to spawn (default wanderer or wife)
             EntityCitizen newGuy;
             if(isLessFemales()){
               newGuy = new EntityWife(worldObj);
             }
             else{
               newGuy = new EntityCitizen(worldObj);
             }
         
View Full Code Here

Examples of colonies.src.citizens.EntityWife

       
        if(employee.isMale){
          employee.setNewJob(new EntityCitizen(employee.worldObj));
        }
        else{
          employee.setNewJob(new EntityWife(employee.worldObj));
        }
       
        employee = null;
      }
    }
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.