mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 14:49:56 +00:00
17 lines
401 B
C++
17 lines
401 B
C++
#ifndef OPENMW_PACKETPLAYERREST_HPP
|
|
#define OPENMW_PACKETPLAYERREST_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketPlayerRest : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketPlayerRest(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Packet(RakNet::BitStream *newBitstream, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETPLAYERREST_HPP
|