openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorAuthority.cpp
2017-05-28 15:23:16 +08:00

21 lines
523 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);
}