openmw-tes3coop/apps/openmw/mwmp/processors/player/ProcessorPlayerDisposition.hpp

24 lines
519 B
C++
Raw Normal View History

#ifndef OPENMW_PROCESSORPLAYERDISPOSITION_HPP
#define OPENMW_PROCESSORPLAYERDISPOSITION_HPP
2017-06-06 16:06:10 +00:00
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerDisposition : 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