Package cz.matfyz.aai.fantom.message

Examples of cz.matfyz.aai.fantom.message.MessageStart


   * @param detectives List of detectives still in the game.
   * @return A winner if game is over, or <code>null</code> if nobody won during the initial phase.
   */
  protected MessageUpdate startGame(List<Actor> phantoms, List<Actor> detective) throws ServerException {
    logger.info("Initializing a new game");
    MessageStart msgStart = new MessageStart(graph);
   
    logger.debug("Sending message 'start' to the detectives");
    detectiveClient.sendMessage(msgStart);
    logger.trace("Message sent");
   
View Full Code Here

TOP

Related Classes of cz.matfyz.aai.fantom.message.MessageStart

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.