mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 02:27:42 +00:00
Humungous refactor
This commit is contained in:
24
Runtime/Graphics/CLight.cpp
Normal file
24
Runtime/Graphics/CLight.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "CLight.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CLight CLight::BuildDirectional(const zeus::CVector3f& dir, const zeus::CColor& color)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
CLight CLight::BuildSpot(const zeus::CVector3f& pos, const zeus::CVector3f& dir,
|
||||
const zeus::CColor& color, float angle)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
CLight CLight::BuildCustom(const zeus::CVector3f& pos, const zeus::CVector3f& dir,
|
||||
const zeus::CColor& color, float constAtt, float linearAtt, float quadAtt,
|
||||
float intensity, float, float)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user