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

Move CParticleGlobals from the executable and onto the heap, minor fixes, update wiki link

This commit is contained in:
2019-12-03 00:47:05 -08:00
parent 697a100bca
commit 34e78a2dd0
29 changed files with 162 additions and 161 deletions

View File

@@ -187,7 +187,7 @@ public:
void EndLifetime();
void ForceParticleCreation(int amount);
float GetExternalVar(int i) const { return x9c_externalVars[i]; }
void SetCEXTValue(int i, float v) { x9c_externalVars[i] = v; }
void SetExternalVar(int i, float v) { x9c_externalVars[i] = v; }
bool InternalUpdate(double);
void RenderModels(const CActorLights* actLights);