1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 23:53:56 +00:00
openmw-tes3mp/apps/openmw/mwclass/static.cpp
2010-08-03 17:11:41 +02:00

19 lines
346 B
C++

#include "static.hpp"
#include <components/esm/loadstat.hpp>
namespace MWClass
{
std::string Static::getName (const MWWorld::Ptr& ptr) const
{
return "";
}
void Static::registerSelf()
{
boost::shared_ptr<Class> instance (new Static);
registerClass (typeid (ESM::Static).name(), instance);
}
}