openmw-tes3coop/apps/openmw/mwclass/clothing.cpp
2010-08-03 15:24:44 +02:00

14 lines
258 B
C++

#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);
}
}