1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketSpellbook.hpp
2016-11-21 02:28:05 +02:00

18 lines
407 B
C++

#ifndef OPENMW_PACKETSPELLBOOK_HPP
#define OPENMW_PACKETSPELLBOOK_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketSpellbook : public PlayerPacket
{
public:
PacketSpellbook(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_PACKETSPELLBOOK_HPP