Package org.scotlandyard.engine.chat

Examples of org.scotlandyard.engine.chat.Chat


    this.toPlayer=toNode;

  }
 
        public static Chat getNewInstance(final Player fromNode,final Player toNode,final String msg) {
            final Chat chat = new ChatImpl(fromNode, toNode, msg);   
            //register the chat in the game engine
            GameEngine.instance().getChatHistory().add(chat);
            return chat;
        }
View Full Code Here

TOP

Related Classes of org.scotlandyard.engine.chat.Chat

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.