mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 00:35:23 +00:00
15 lines
246 B
C++
15 lines
246 B
C++
|
|
||
|
#include "light.hpp"
|
||
|
|
||
|
#include <components/esm/loadligh.hpp>
|
||
|
|
||
|
namespace MWClass
|
||
|
{
|
||
|
void Light::registerSelf()
|
||
|
{
|
||
|
boost::shared_ptr<Class> instance (new Light);
|
||
|
|
||
|
registerClass (typeid (ESM::Light).name(), instance);
|
||
|
}
|
||
|
}
|