2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-04 12:01:21 +00:00
metaforce/Runtime/CLight.hpp
2016-02-09 12:52:33 -10:00

32 lines
323 B
C++

#ifndef __RETRO_CLIGHT_HPP__
#define __RETRO_CLIGHT_HPP__
namespace Retro
{
enum class ELightType
{
LocalAmbient,
Directional,
Custom,
Spot,
Spot2,
LocalAmbient2
};
enum class EFalloffType
{
Constant,
Linear,
Quadratic
};
class CLight
{
public:
};
}
#endif // __RETRO_CLIGHT_HPP__