mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
17 lines
416 B
C++
17 lines
416 B
C++
#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);
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETPLAYERSPELLBOOK_HPP
|