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