Package games.stendhal.server.core.account

Examples of games.stendhal.server.core.account.CharacterCreator


    final AccountCreator creator = new AccountCreator(username, password, email);
    return creator.create();
  }

  public CharacterResult createCharacter(final String username, final String character, final RPObject template) {
    final CharacterCreator creator = new CharacterCreator(username, character, template);
    return creator.create();
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.core.account.CharacterCreator

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.