1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 06:45:32 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorEquipment.cpp

21 lines
540 B
C++
Raw Normal View History

#include <components/openmw-mp/NetworkMessages.hpp>
#include <components/openmw-mp/Log.hpp>
#include "PacketActorEquipment.hpp"
using namespace mwmp;
PacketActorEquipment::PacketActorEquipment(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_EQUIPMENT;
}
2017-06-02 19:42:10 +00:00
void PacketActorEquipment::Actor(BaseActor &actor, bool send)
{
2017-06-02 19:42:10 +00:00
for (int j = 0; j < 19; j++)
{
2017-06-02 19:42:10 +00:00
RW(actor.equipedItems[j].refId, send);
RW(actor.equipedItems[j].count, send);
RW(actor.equipedItems[j].charge, send);
}
}