2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:07:41 +00:00

CParticleGen inheritance fix

This commit is contained in:
Jack Andersen
2016-02-12 19:49:59 -10:00
parent 5f4eee538d
commit acf65c561a
14 changed files with 367 additions and 72 deletions

View File

@@ -4,7 +4,98 @@ namespace Retro
{
CParticleSwoosh::CParticleSwoosh(const TToken<CSwooshDescription>& desc, int)
: CElementGen(desc)
{
}
void CParticleSwoosh::Update(double)
{
}
void CParticleSwoosh::Render()
{
}
void CParticleSwoosh::SetOrientation(const Zeus::CTransform&)
{
}
void CParticleSwoosh::SetTranslation(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetGlobalOrientation(const Zeus::CTransform&)
{
}
void CParticleSwoosh::SetGlobalTranslation(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetGlobalScale(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetLocalScale(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetParticleEmission(bool)
{
}
void CParticleSwoosh::SetModulationColor(const Zeus::CColor&)
{
}
const Zeus::CTransform& CParticleSwoosh::GetOrientation() const
{
}
const Zeus::CVector3f& CParticleSwoosh::GetTranslation() const
{
}
const Zeus::CTransform& CParticleSwoosh::GetGlobalOrientation() const
{
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalTranslation() const
{
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalScale() const
{
}
const Zeus::CColor& CParticleSwoosh::GetModulationColor() const
{
}
bool CParticleSwoosh::IsSystemDeletable() const
{
}
std::pair<Zeus::CAABox, bool> CParticleSwoosh::GetBounds() const
{
}
u32 CParticleSwoosh::GetParticleCount() const
{
}
bool CParticleSwoosh::SystemHasLight() const
{
}
CLight CParticleSwoosh::GetLight() const
{
}
bool CParticleSwoosh::GetParticleEmission() const
{
}
void CParticleSwoosh::DestroyParticles()
{
}