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

23 lines
524 B
C++

#ifndef OPENMW_PROCESSORPLAYERDISPOSITION_HPP
#define OPENMW_PROCESSORPLAYERDISPOSITION_HPP
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerDisposition final: public PlayerProcessor
{
public:
ProcessorPlayerDisposition()
{
BPP_INIT(ID_PLAYER_DISPOSITION)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
{
// Placeholder to be filled in later
}
};
}
#endif //OPENMW_PROCESSORPLAYERDISPOSITION_HPP