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
341 B
C++
19 lines
341 B
C++
#ifndef OPENMW_PROCESSOROBJECTMOVE_HPP
|
|
#define OPENMW_PROCESSOROBJECTMOVE_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectMove : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectMove()
|
|
{
|
|
BPP_INIT(ID_OBJECT_MOVE)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTMOVE_HPP
|