openmw-tes3coop/components/openmw-mp/Packets/PacketClass.hpp

24 lines
419 B
C++
Raw Normal View History

2016-08-29 13:00:19 +00:00
//
// Created by koncord on 29.08.16.
//
#ifndef OPENMW_PACKETCLASS_HPP
#define OPENMW_PACKETCLASS_HPP
#include <components/openmw-mp/Packets/BasePacket.hpp>
namespace mwmp
{
class PacketClass : public BasePacket
{
public:
PacketClass(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_PACKETCLASS_HPP