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

CElementGen constructor

This commit is contained in:
Jack Andersen
2016-02-09 12:52:33 -10:00
parent 69f32a4706
commit 33eb00b366
14 changed files with 409 additions and 62 deletions

View File

@@ -24,25 +24,25 @@ class CIntElement;
struct SParticleModel
{
TToken<CModel> m_model;
TLockedToken<CModel> m_model;
bool m_found = false;
};
struct SChildGeneratorDesc
{
TToken<CGenDescription> m_gen;
TLockedToken<CGenDescription> m_gen;
bool m_found = false;
};
struct SSwooshGeneratorDesc
{
TToken<CSwooshDescription> m_swoosh;
TLockedToken<CSwooshDescription> m_swoosh;
bool m_found = false;
};
struct SElectricGeneratorDesc
{
TToken<CElectricDescription> m_electric;
TLockedToken<CElectricDescription> m_electric;
bool m_found = false;
};