1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 03:39:14 +00:00
OpenMW/apps/openmw/mwclass/static.cpp
2010-08-03 15:24:44 +02:00

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);
}
}