Package net.myexperiments.gos.agent

Examples of net.myexperiments.gos.agent.GameCharacter


    return CreateCharacter(theName, theSpecies, theClass);
   
  }
 
  public GameCharacter CreateCharacter( String theName, String theSpecies, String theClass) {
    GameCharacter theCharacter = new GameCharacter(world, theName);
    theCharacter.setCharacterClass(theClass);
    theCharacter.setSpecies(theSpecies);
    return theCharacter;
   
  }
View Full Code Here

TOP

Related Classes of net.myexperiments.gos.agent.GameCharacter

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.