1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 09:36:37 +00:00
OpenMW/apps/openmw/mwclass/clothing.cpp

15 lines
258 B
C++
Raw Normal View History

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