Package scotlandyard.shared.messaging

Examples of scotlandyard.shared.messaging.MessageDisconnect


  public void quitGame(Player player) {
    messageQueues.remove(players.indexOf(player));
    players.remove(player);
    // notify the other players
    this.sendMessage(new MessageDisconnect(player.getName()));
  }
View Full Code Here


  public void quitGame(Player player) {
    messageQueues.remove(players.indexOf(player));
    players.remove(player);
    // notify the other players
    this.sendMessage(new MessageDisconnect(player.getName()));
  }
View Full Code Here

TOP

Related Classes of scotlandyard.shared.messaging.MessageDisconnect

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.