mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
22 lines
455 B
C++
22 lines
455 B
C++
|
//
|
||
|
// Created by koncord on 13.01.16.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENMW_PACKETSTATSDYNAMIC_HPP
|
||
|
#define OPENMW_PACKETSTATSDYNAMIC_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketPlayerStatsDynamic : public PlayerPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketPlayerStatsDynamic(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETSTATSDYNAMIC_HPP
|