Package plar.ClientServer.Signal

Examples of plar.ClientServer.Signal.LevelInfo


      Common.info(1, "Connect.run(): new player: " + p + "  name=" + name
      + " type=" + type);
    }
    if (signal == Signal.WELCOME) {
      LevelInfo li = new LevelInfo();
      Common.info(1,"received a WELCOME!");

      List <String> lp=game.playerList;
      List <String> lg=game.gunList;
      li.MOTD = "Welcome to PlAr server v"+Common.version+" \n";
View Full Code Here


      }
    }
    if (signal == Signal.LEVELINFO) {
      Common.info(1, "REceived a LEVEL INFO ");
      try {
        LevelInfo i = (LevelInfo) Signal.toObject(data);
        MOTD = i.MOTD;
        resolution = i.resolution;
        scale.x = i.scaleX;
        scale.y = i.scaleY;
View Full Code Here

TOP

Related Classes of plar.ClientServer.Signal.LevelInfo

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.