2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-21 18:59:34 +00:00

Finished CElementGen virtual method imps

This commit is contained in:
Jack Andersen
2016-02-12 19:16:39 -10:00
parent 7c5e8d37df
commit 5f4eee538d
7 changed files with 295 additions and 118 deletions

View File

@@ -0,0 +1,24 @@
#include "CLight.hpp"
namespace Retro
{
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 {};
}
}