Ejemplo n.º 1
0
 public static RobotData getRobotData(int first, int second) {
   int id = first & 0x7FFF;
   MapLocation location = Serializer.decodeMapLocation(second >>> 7);
   int health = first >>> 15;
   RobotType type = Serializer.decodeRobotType((second >>> 3) & 0xF);
   return new RobotData(id, location, health, type);
 }