Package games.stendhal.server.entity.mapstuff.game

Examples of games.stendhal.server.entity.mapstuff.game.TicTacToeBoard


  /**
   * creates TicTacToeBoard and adds it to the world.
   */
  private void addBoard() {
    board = new TicTacToeBoard();
    board.setPosition(87, 111);
    zone.add(board);
    board.addToWorld();
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.mapstuff.game.TicTacToeBoard

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.