Package de.creepsmash.client.game.GameContext

Examples of de.creepsmash.client.game.GameContext.BoardLocation


   * @param start startcontext
   * @return found context
   */
  private GameContext findNextContext(GameContext start) {
    GameContext found = null;
    BoardLocation loc = start.getLocation();
    while (found == null) {
      loc = getSuccessor(loc);
      found = findContextByLocation(loc);
    }
    return found;
View Full Code Here

TOP

Related Classes of de.creepsmash.client.game.GameContext.BoardLocation

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.