Files
fishtanks/src/Components/DirectionalLight.h
T
2014-04-27 07:48:16 +02:00

21 lines
400 B
C++
Executable File

#ifndef Components_DirectionalLight_h__
#define Components_DirectionalLight_h__
#include "Component.h"
#include "Color.h"
namespace Components
{
struct DirectionalLight : Component
{
float Intensity;
float MaxRange;
float SpecularIntensity;
Color Color;
virtual DirectionalLight* Clone() const override { return new DirectionalLight(*this); }
};
}
#endif // !Components_DirectionalLight_h__