responseCode = Constants.SMSG_KILL_ANIMAL;
}
@Override
public byte[] constructResponseInBytes() {
GamePacket packet = new GamePacket(responseCode);
packet.addInt32(animal_id);
packet.addInt32(predator_id);
packet.addShort16(count);
return packet.getBytes();
}