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

Implement rest of elements

This commit is contained in:
2016-02-13 23:38:01 -08:00
parent 43986b922b
commit 33f50789e4
5 changed files with 43 additions and 27 deletions

View File

@@ -2,10 +2,12 @@
#define __PSHAG_CPARTICLEGLOBALS_HPP__
#include "CVector3f.hpp"
#include "CColor.hpp"
#include "RetroTypes.hpp"
namespace pshag
{
class CParticleGen;
class CParticleGlobals
{
public:
@@ -45,8 +47,17 @@ public:
Zeus::CVector3f x1c_pvel;
float x2c_psll;
float x30_prlw;
Zeus::CColor x34_pcol;
};
struct SParticleSystem
{
FourCC x0_type;
CParticleGen* x4_system;
};
static SParticleMetrics* g_particleMetrics;
static SParticleSystem* g_currentParticleSystem;
};
}