1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00
OpenMW/apps/openmw/mwclass/static.cpp

20 lines
346 B
C++
Raw Normal View History

2010-08-03 15:24:44 +02:00
#include "static.hpp"
#include <components/esm/loadstat.hpp>
namespace MWClass
{
2010-08-03 17:11:41 +02:00
std::string Static::getName (const MWWorld::Ptr& ptr) const
{
return "";
}
2010-08-03 15:24:44 +02:00
void Static::registerSelf()
{
boost::shared_ptr<Class> instance (new Static);
registerClass (typeid (ESM::Static).name(), instance);
}
}