コード例 #1
0
ファイル: LoginSession.java プロジェクト: xdcbaby/game
 public LoginSession(GameServer server, Channel channel) {
   super(server, channel);
   this.service = server.getLoginService();
   init();
 }
コード例 #2
0
ファイル: ButtonDispatcher.java プロジェクト: Killianoc/FYP
 /**
  * Shortcut method to get the GameServer instance of this dispatcher.
  *
  * @return the GameServer instance of the ButtonDispatcher
  */
 public static ButtonDispatcher getInstance() {
   return GameServer.getInstance().getMessageDispatcher().getButtonDispatcher();
 }