mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 02:15:33 +00:00
18 lines
464 B
C++
18 lines
464 B
C++
|
#include "PacketWorldCollisionOverride.hpp"
|
||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketWorldCollisionOverride::PacketWorldCollisionOverride(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
||
|
{
|
||
|
packetID = ID_WORLD_COLLISION_OVERRIDE;
|
||
|
orderChannel = CHANNEL_WORLDSTATE;
|
||
|
}
|
||
|
|
||
|
void PacketWorldCollisionOverride::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
WorldstatePacket::Packet(bs, send);
|
||
|
|
||
|
// Placeholder
|
||
|
}
|