Package serverMessages

Examples of serverMessages.ChatEvent


         
        case Enums.sendChat:
          //set limit here ar some point
          byte bytesIn[]=new byte[1024];
          in.readFully(bytesIn);
          ServerMain.enQueue(new ChatEvent(PlayerID,Time,bytesIn) );
          break;
       
        case Enums.sendMoveUnit:
          System.out.print("messageIn\n");
          int ID=in.readInt();
View Full Code Here

TOP

Related Classes of serverMessages.ChatEvent

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.