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
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketPlayerSpellbook final: public PlayerPacket
|
2017-02-05 07:01:33 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketPlayerSpellbook(RakNet::RakPeerInterface *peer);
|
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Packet(RakNet::BitStream *bs, bool send) override;
|
2017-02-05 07:01:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETPLAYERSPELLBOOK_HPP
|