2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +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

@@ -0,0 +1,11 @@
#include "CParticleGen.hpp"
namespace Retro
{
void CParticleGen::AddModifier(CWarp* mod)
{
x8_modifierList.push_back(mod);
}
}