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