1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 20:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketPlayerClass.hpp

18 lines
396 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETPLAYERCLASS_HPP
#define OPENMW_PACKETPLAYERCLASS_HPP
2016-08-29 13:00:19 +00:00
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
2016-08-29 13:00:19 +00:00
namespace mwmp
{
class PacketPlayerClass : public PlayerPacket
2016-08-29 13:00:19 +00:00
{
public:
PacketPlayerClass(RakNet::RakPeerInterface *peer);
2016-08-29 13:00:19 +00:00
virtual void Packet(RakNet::BitStream *bs, bool send);
2016-08-29 13:00:19 +00:00
};
}
#endif //OPENMW_PACKETPLAYERCLASS_HPP