1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 00:35:23 +00:00

15 lines
246 B
C++
Raw Normal View History

2010-08-03 15:24:44 +02:00
#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);
}
}