rnr/Projects/Engine/Header/App/V8/DataModel/Light.hpp

16 lines
263 B
C++

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