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:
@@ -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 {};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user