mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 23:53:50 +00:00
18 lines
394 B
C++
18 lines
394 B
C++
|
#include "PacketCellReset.hpp"
|
||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketCellReset::PacketCellReset(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
||
|
{
|
||
|
packetID = ID_CELL_RESET;
|
||
|
orderChannel = CHANNEL_SYSTEM;
|
||
|
}
|
||
|
|
||
|
void PacketCellReset::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
WorldstatePacket::Packet(bs, send);
|
||
|
|
||
|
// Placeholder
|
||
|
}
|