mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-29 08:06:44 +00:00
14 lines
242 B
C++
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);
|
|
}
|
|
}
|