1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 20:53:51 +00:00
openmw-tes3mp/apps/openmw/mwmp/processors/object/ProcessorObjectAnimPlay.hpp

29 lines
710 B
C++

#ifndef OPENMW_PROCESSOROBJECTANIMPLAY_HPP
#define OPENMW_PROCESSOROBJECTANIMPLAY_HPP
#include "BaseObjectProcessor.hpp"
namespace mwmp
{
class ProcessorObjectAnimPlay final: public BaseObjectProcessor
{
public:
ProcessorObjectAnimPlay()
{
BPP_INIT(ID_OBJECT_ANIM_PLAY)
}
virtual void Do(ObjectPacket &packet, ObjectList &objectList)
{
BaseObjectProcessor::Do(packet, objectList);
ptrCellStore = Main::get().getCellController()->getCellStore(objectList.cell);
if (!ptrCellStore) return;
objectList.animateObjects(ptrCellStore);
}
};
}
#endif //OPENMW_PROCESSOROBJECTANIMPLAY_HPP