1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 20:23:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketPlayerSpellsActive.hpp

21 lines
499 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETPLAYERSPELLSACTIVE_HPP
#define OPENMW_PACKETPLAYERSPELLSACTIVE_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketPlayerSpellsActive : public PlayerPacket
{
public:
PacketPlayerSpellsActive(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *newBitstream, bool send);
protected:
static const int maxEffects = 20;
};
}
#endif //OPENMW_PACKETPLAYERSPELLSACTIVE_HPP