mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 22:53:52 +00:00
19 lines
363 B
C++
19 lines
363 B
C++
|
#ifndef OPENMW_PROCESSOROBJECTROTATE_HPP
|
||
|
#define OPENMW_PROCESSOROBJECTROTATE_HPP
|
||
|
|
||
|
#include "apps/openmw-mp/WorldProcessor.hpp"
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ProcessorObjectRotate : public WorldProcessor
|
||
|
{
|
||
|
public:
|
||
|
ProcessorObjectRotate()
|
||
|
{
|
||
|
BPP_INIT(ID_OBJECT_ROTATE)
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PROCESSOROBJECTROTATE_HPP
|