forked from mirror/openmw-tes3mp
18 lines
406 B
C++
18 lines
406 B
C++
|
#include "PacketRecordDynamic.hpp"
|
||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketRecordDynamic::PacketRecordDynamic(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
||
|
{
|
||
|
packetID = ID_RECORD_DYNAMIC;
|
||
|
orderChannel = CHANNEL_SYSTEM;
|
||
|
}
|
||
|
|
||
|
void PacketRecordDynamic::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
PlayerPacket::Packet(bs, send);
|
||
|
|
||
|
// Placeholder
|
||
|
}
|