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

Add CPOINode family of classes

This commit is contained in:
Jack Andersen
2016-04-10 21:10:28 -10:00
parent 8242c3edda
commit 64d85d7427
28 changed files with 351 additions and 14 deletions

View File

@@ -0,0 +1,30 @@
#ifndef __PSHAG_CPARTICLEDATA_HPP__
#define __PSHAG_CPARTICLEDATA_HPP__
#include "IOStreams.hpp"
#include "RetroTypes.hpp"
namespace urde
{
enum class EParentedMode
{
Initial,
ContinuousEmitter,
ContinuousSystem
};
class CParticleData
{
u32 x0_duration;
SObjectTag x4_particle;
std::string xc_boneName;
float x1c_scale;
EParentedMode x20_parentMode;
public:
CParticleData(CInputStream& in);
};
}
#endif // __PSHAG_CPARTICLEDATA_HPP__