1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 07:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/World/PacketContainerRemove.hpp

18 lines
432 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETCONTAINERREMOVE_HPP
#define OPENMW_PACKETCONTAINERREMOVE_HPP
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
namespace mwmp
{
class PacketContainerRemove : public WorldPacket
{
public:
PacketContainerRemove(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, WorldEvent *event, bool send);
};
}
#endif //OPENMW_PACKETCONTAINERREMOVE_HPP