mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 10:32:04 -04: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
|
|
}
|