1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-23 14:23:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Actor/PacketActorSpellsActive.hpp

21 lines
475 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETACTORSPELLSACTIVE_HPP
#define OPENMW_PACKETACTORSPELLSACTIVE_HPP
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
namespace mwmp
{
class PacketActorSpellsActive : public ActorPacket
{
public:
PacketActorSpellsActive(RakNet::RakPeerInterface *peer);
virtual void Actor(BaseActor &actor, bool send);
protected:
static const int maxEffects = 20;
};
}
#endif //OPENMW_PACKETACTORSPELLSACTIVE_HPP