mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 23:49:55 +00:00
18 lines
351 B
C++
18 lines
351 B
C++
#ifndef OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
#define OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
|
|
#include "../WorldProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectRotate : public WorldProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectRotate()
|
|
{
|
|
BPP_INIT(ID_OBJECT_ROTATE)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTROTATE_HPP
|