mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +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);
|
|
}
|
|
}
|