forked from mirror/openmw-tes3mp
19 lines
388 B
C++
19 lines
388 B
C++
|
#ifndef OPENMW_PROCESSORSCRIPTLOCALSHORT_HPP
|
||
|
#define OPENMW_PROCESSORSCRIPTLOCALSHORT_HPP
|
||
|
|
||
|
#include "apps/openmw-mp/WorldProcessor.hpp"
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ProcessorScriptLocalShort : public WorldProcessor
|
||
|
{
|
||
|
public:
|
||
|
ProcessorScriptLocalShort()
|
||
|
{
|
||
|
BPP_INIT(ID_SCRIPT_LOCAL_SHORT)
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PROCESSORSCRIPTLOCALSHORT_HPP
|