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

24 lines
423 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
2016-10-17 12:54:36 +00:00
#include <components/openmw-mp/Packets/PlayerPacket.hpp>
2016-08-29 13:00:19 +00:00
namespace mwmp
{
2016-10-17 12:54:36 +00:00
class PacketClass : public PlayerPacket
2016-08-29 13:00:19 +00:00
{
public:
PacketClass(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_PACKETCLASS_HPP