2017-04-02 21:46:46 +00:00
|
|
|
#ifndef OPENMW_PROCESSORSCRIPTGLOBALSHORT_HPP
|
|
|
|
#define OPENMW_PROCESSORSCRIPTGLOBALSHORT_HPP
|
|
|
|
|
2018-05-15 19:07:06 +00:00
|
|
|
#include "../ObjectProcessor.hpp"
|
2017-04-02 21:46:46 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-05-15 19:07:06 +00:00
|
|
|
class ProcessorScriptGlobalShort : public ObjectProcessor
|
2017-04-02 21:46:46 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorScriptGlobalShort()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_SCRIPT_GLOBAL_SHORT)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORSCRIPTGLOBALSHORT_HPP
|