1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-25 10:39:40 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorEquipment.hpp

18 lines
417 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETACTOREQUIPMENT_HPP
#define OPENMW_PACKETACTOREQUIPMENT_HPP
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
namespace mwmp
{
class PacketActorEquipment final: public ActorPacket
{
public:
explicit PacketActorEquipment(RakNet::RakPeerInterface *peer);
void Actor(BaseActor &actor, bool send) override;
};
}
#endif //OPENMW_PACKETACTOREQUIPMENT_HPP