1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00
2010-08-03 15:24:44 +02:00

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);
}
}