mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-02 14:45:32 +00:00
18 lines
395 B
C++
18 lines
395 B
C++
#ifndef OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP
|
|
#define OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectMiscellaneous : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectMiscellaneous()
|
|
{
|
|
BPP_INIT(ID_OBJECT_MISCELLANEOUS)
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP
|