Package de.nameless.gameEngine.system.transactions

Examples of de.nameless.gameEngine.system.transactions.NETurnTransaktion


   * @param userName Name for the client
   */
  public NEClient(String userName) {
    NEField.showGrid.setTo(showGridonStart);
    this.userName = userName;
    this.turn = new NETurnTransaktion();
    lan = new NELanClient();
    gameServer = new NEgameServer();   
  }
View Full Code Here


  public void DoTransaction(NEGameTransaction tx){   
    tx.DoTransaktion(gameServer);       
  }
 
  private void StartTransaction(){     
    turn = new NETurnTransaktion();
  }
View Full Code Here

TOP

Related Classes of de.nameless.gameEngine.system.transactions.NETurnTransaktion

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.