forked from teamnwah/openmw-tes3coop
[General] Remove unused packet placeholder ID_OBJECT_HEALTH
parent
1198caddf6
commit
27c4015f50
@ -1,14 +0,0 @@
|
|||||||
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
||||||
#include "PacketObjectHealth.hpp"
|
|
||||||
|
|
||||||
using namespace mwmp;
|
|
||||||
|
|
||||||
PacketObjectHealth::PacketObjectHealth(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
|
|
||||||
{
|
|
||||||
packetID = ID_OBJECT_HEALTH;
|
|
||||||
}
|
|
||||||
|
|
||||||
void PacketObjectHealth::Packet(RakNet::BitStream *bs, BaseEvent *event, bool send)
|
|
||||||
{
|
|
||||||
WorldPacket::Packet(bs, event, send);
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
#ifndef OPENMW_PACKETOBJECTHEALTH_HPP
|
|
||||||
#define OPENMW_PACKETOBJECTHEALTH_HPP
|
|
||||||
|
|
||||||
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
|
||||||
|
|
||||||
namespace mwmp
|
|
||||||
{
|
|
||||||
class PacketObjectHealth : public WorldPacket
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
PacketObjectHealth(RakNet::RakPeerInterface *peer);
|
|
||||||
|
|
||||||
virtual void Packet(RakNet::BitStream *bs, BaseEvent *event, bool send);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif //OPENMW_PACKETOBJECTHEALTH_HPP
|
|
Loading…
Reference in New Issue