Package org.jpacman.framework.factory

Examples of org.jpacman.framework.factory.MapParser.parseMap()


   * @throws FactoryException If singleRow contains illegal chars.
   * @return The game created while parsing the row.
   */
  protected Game makePlay(String singleRow) throws FactoryException {
    MapParser p = new MapParser(makeFactory());
    Game theGame = p.parseMap(new String[]{singleRow});
    return theGame;
  }
 
 
  /**
 
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.