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