You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
353 B
C++
19 lines
353 B
C++
#ifndef OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
#define OPENMW_PROCESSOROBJECTROTATE_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectRotate : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectRotate()
|
|
{
|
|
BPP_INIT(ID_OBJECT_ROTATE)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTROTATE_HPP
|