mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-04 12:01:21 +00:00
32 lines
323 B
C++
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__
|