mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:49:54 +00:00
19 lines
457 B
C++
19 lines
457 B
C++
|
#ifndef OPENMW_PACKETRECORDDYNAMIC_HPP
|
||
|
#define OPENMW_PACKETRECORDDYNAMIC_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketRecordDynamic: public PlayerPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketRecordDynamic(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETRECORDDYNAMIC_HPP
|