2017-02-05 07:01:33 +00:00
|
|
|
#ifndef OPENMW_PACKETPLAYERSPELLBOOK_HPP
|
|
|
|
#define OPENMW_PACKETPLAYERSPELLBOOK_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
|
|
|
class PacketPlayerSpellbook : public PlayerPacket
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketPlayerSpellbook(RakNet::RakPeerInterface *peer);
|
|
|
|
|
2017-03-06 09:44:08 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
2017-02-05 07:01:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETPLAYERSPELLBOOK_HPP
|