Package clientMessages

Examples of clientMessages.RemoveSpell


          EventQue.add(new MoveUnit(ID,x,y));
          break;
         
        case Enums.removeSpell: //6 bytes
          ID=Enums.toInt(Enums.subarray(message,1,4));
          EventQue.add(new RemoveSpell(ID));
          break;
         
        case Enums.removeUnit://6 bytes
          ID=Enums.toInt(Enums.subarray(message,1,4));
          EventQue.add(new RemoveUnit(ID));
View Full Code Here

TOP

Related Classes of clientMessages.RemoveSpell

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.