mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
20 lines
346 B
C++
20 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);
|
|
}
|
|
}
|