2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CACTORMODELPARTICLES
|
|
|
|
#define _CACTORMODELPARTICLES
|
2022-08-13 02:48:34 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-09-13 04:26:54 +00:00
|
|
|
class CActor;
|
|
|
|
class CStateManager;
|
|
|
|
|
2022-08-13 02:48:34 +00:00
|
|
|
class CActorModelParticles {
|
2022-09-13 04:26:54 +00:00
|
|
|
public:
|
2022-11-15 01:08:30 +00:00
|
|
|
CActorModelParticles();
|
2022-09-13 04:26:54 +00:00
|
|
|
void Render(const CStateManager& mgr, const CActor& actor) const;
|
|
|
|
|
2022-08-13 02:48:34 +00:00
|
|
|
private:
|
|
|
|
// TODO
|
2022-11-15 13:45:15 +00:00
|
|
|
uchar x0_pad[0xe8];
|
2022-08-13 02:48:34 +00:00
|
|
|
};
|
2022-11-15 13:45:15 +00:00
|
|
|
CHECK_SIZEOF(CActorModelParticles, 0xe8);
|
2022-08-13 02:48:34 +00:00
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CACTORMODELPARTICLES
|