1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 08:06:44 +00:00
openmw-tes3mp/apps/openmw/mwclass/book.cpp
2010-08-03 15:24:44 +02:00

14 lines
242 B
C++

#include "book.hpp"
#include <components/esm/loadbook.hpp>
namespace MWClass
{
void Book::registerSelf()
{
boost::shared_ptr<Class> instance (new Book);
registerClass (typeid (ESM::Book).name(), instance);
}
}