forked from mirror/openmw-tes3mp
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
18 lines
388 B
C++
18 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
|