1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-12 21:39:26 +00:00
OpenMW/apps/openmw/mwclass/container.cpp

15 lines
262 B
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "container.hpp"
#include <components/esm/loadcont.hpp>
namespace MWClass
{
void Container::registerSelf()
{
boost::shared_ptr<Class> instance (new Container);
registerClass (typeid (ESM::Container).name(), instance);
}
}