1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 00:19:56 +00:00
openmw-tes3mp/apps/openmw/mwmp/processors/player/ProcessorPlayerRest.hpp
2019-10-24 22:16:17 +03:00

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