2017-04-02 21:46:46 +00:00
|
|
|
#ifndef OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
|
|
#define OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
|
|
|
2018-05-15 19:07:06 +00:00
|
|
|
#include "../ObjectProcessor.hpp"
|
2017-04-02 21:46:46 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-05-15 19:07:06 +00:00
|
|
|
class ProcessorObjectRotate : public ObjectProcessor
|
2017-04-02 21:46:46 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorObjectRotate()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_OBJECT_ROTATE)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTROTATE_HPP
|