mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
15 lines
250 B
C++
15 lines
250 B
C++
|
|
||
|
#include "static.hpp"
|
||
|
|
||
|
#include <components/esm/loadstat.hpp>
|
||
|
|
||
|
namespace MWClass
|
||
|
{
|
||
|
void Static::registerSelf()
|
||
|
{
|
||
|
boost::shared_ptr<Class> instance (new Static);
|
||
|
|
||
|
registerClass (typeid (ESM::Static).name(), instance);
|
||
|
}
|
||
|
}
|