2017-05-29 01:43:52 +00:00
|
|
|
#ifndef OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|
|
|
|
#define OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|
|
|
|
|
2017-07-03 17:13:10 +00:00
|
|
|
#include "../PlayerProcessor.hpp"
|
2017-05-29 01:43:52 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:20:55 +00:00
|
|
|
class ProcessorPlayerAnimPlay final: public PlayerProcessor
|
2017-05-29 01:43:52 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorPlayerAnimPlay()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_PLAYER_ANIM_PLAY)
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:32:39 +00:00
|
|
|
void Do(PlayerPacket &packet, const std::shared_ptr<Player> &player) override
|
2017-05-29 01:43:52 +00:00
|
|
|
{
|
|
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
|
|
|
2017-08-27 16:15:56 +00:00
|
|
|
player->sendToLoaded(&packet);
|
2017-05-29 01:43:52 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|