1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-31 02:45:32 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorAuthority.cpp
2017-05-24 22:09:35 +03:00

26 lines
685 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include "PacketActorAuthority.hpp"
using namespace mwmp;
PacketActorAuthority::PacketActorAuthority(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_AUTHORITY;
}
void PacketActorAuthority::Packet(RakNet::BitStream *bs, bool send)
{
ActorPacket::Packet(bs, send);
if (send)
actorList->count = (unsigned int)(actorList->baseActors.size());
else
actorList->baseActors.clear();
RW(actorList->count, send);
RW(actorList->cell.mData.mFlags, send);
RW(actorList->cell.mData.mX, send);
RW(actorList->cell.mData.mY, send);
RW(actorList->cell.mName, send);
}