mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 10:49:57 +00:00
24 lines
533 B
C++
24 lines
533 B
C++
|
#ifndef OPENMW_PROCESSORPLAYERDISPOSITION_HPP
|
||
|
#define OPENMW_PROCESSORPLAYERDISPOSITION_HPP
|
||
|
|
||
|
#include "apps/openmw/mwmp/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
|