mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
14 lines
242 B
C++
14 lines
242 B
C++
|
|
#include "misc.hpp"
|
|
|
|
#include <components/esm/loadmisc.hpp>
|
|
|
|
namespace MWClass
|
|
{
|
|
void Misc::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Misc);
|
|
|
|
registerClass (typeid (ESM::Misc).name(), instance);
|
|
}
|
|
}
|