2018-01-29 20:32:51 +00:00
|
|
|
#include "PacketCellCreate.hpp"
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
2018-07-14 20:06:09 +00:00
|
|
|
PacketCellCreate::PacketCellCreate(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
2018-01-29 20:32:51 +00:00
|
|
|
{
|
|
|
|
packetID = ID_CELL_CREATE;
|
|
|
|
orderChannel = CHANNEL_SYSTEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PacketCellCreate::Packet(RakNet::BitStream *bs, bool send)
|
|
|
|
{
|
2018-07-14 20:06:09 +00:00
|
|
|
WorldstatePacket::Packet(bs, send);
|
2018-01-29 20:32:51 +00:00
|
|
|
|
|
|
|
// Placeholder
|
|
|
|
}
|