Package com.hobbitsadventure.game.util

Examples of com.hobbitsadventure.game.util.CharacterGenerator


  // Player
  private PlayerCharacter pc;
 
  public GameState() throws IOException {
    this.mapReader = new MapReader();
    this.characterGenerator = new CharacterGenerator();
    this.propChangeSupport = new PropertyChangeSupport(this);
    this.pc = characterGenerator.generatePlayerCharacter();
    loadRealmMap("world1");
  }
View Full Code Here

TOP

Related Classes of com.hobbitsadventure.game.util.CharacterGenerator

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.