1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00
openmw-tes3mp/apps/openmw-mp/processors/player/ProcessorPlayerAnimFlags.hpp

26 lines
546 B
C++
Raw Normal View History

#ifndef OPENMW_PROCESSORPLAYERANIMFLAGS_HPP
#define OPENMW_PROCESSORPLAYERANIMFLAGS_HPP
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerAnimFlags : public PlayerProcessor
{
public:
ProcessorPlayerAnimFlags()
{
BPP_INIT(ID_PLAYER_ANIM_FLAGS)
}
void Do(PlayerPacket &packet, Player &player) override
{
DEBUG_PRINTF(strPacketID.c_str());
player.sendToLoaded(&packet);
}
};
}
#endif //OPENMW_PROCESSORPLAYERANIMFLAGS_HPP