mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 00:19:56 +00:00
a74bf1baec
(cherry picked from commit 7748e582a8
)
23 lines
482 B
C++
23 lines
482 B
C++
#ifndef OPENMW_PROCESSORPLAYERREST_HPP
|
|
#define OPENMW_PROCESSORPLAYERREST_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerRest final: public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerRest()
|
|
{
|
|
BPP_INIT(ID_PLAYER_REST)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
// Placeholder to be filled in later
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERREST_HPP
|