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

Finish CParticleElectric

This commit is contained in:
Jack Andersen
2017-06-10 16:57:35 -10:00
parent 92122a9b31
commit f8f3bf407a
8 changed files with 826 additions and 119 deletions

View File

@@ -16,7 +16,7 @@ namespace urde
class CModel;
class CProjectileWeapon
{
static CRandom16 g_GlobalSeed;
static u16 g_GlobalSeed;
TLockedToken<CWeaponDescription> x4_weaponDesc;
CRandom16 x10_random;
zeus::CTransform x14_;
@@ -68,7 +68,7 @@ public:
void Update(float);
void UpdateParticleFx();
void UpdateChildParticleSystems(float);
static void SetGlobalSeed(u16 seed) { g_GlobalSeed.SetSeed(seed); }
static void SetGlobalSeed(u16 seed) { g_GlobalSeed = seed; }
};
}