#pragma once
#include <App/V8/Tree/Instance.hpp>
namespace RNR
{
class Light : public Instance
private:
float m_brightness;
Ogre::Vector3 m_color;
bool m_enabled;
bool m_shadows;
public:
Light();
};
}