#pragma once #include namespace RNR { class Light : public Instance { private: float m_brightness; Ogre::Vector3 m_color; bool m_enabled; bool m_shadows; public: Light(); }; }