forked from mirror/openmw-tes3mp
24 lines
516 B
C++
24 lines
516 B
C++
|
#ifndef OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|
||
|
#define OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|
||
|
|
||
|
#include "apps/openmw/mwmp/PlayerProcessor.hpp"
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ProcessorPlayerAnimPlay : public PlayerProcessor
|
||
|
{
|
||
|
public:
|
||
|
ProcessorPlayerAnimPlay()
|
||
|
{
|
||
|
BPP_INIT(ID_PLAYER_ANIM_PLAY)
|
||
|
}
|
||
|
|
||
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
||
|
{
|
||
|
// Placeholder to be filled in later
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PROCESSORPLAYERANIMPLAY_HPP
|