forked from teamnwah/openmw-tes3coop
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
|