2021-03-28 22:49:05 +02:00
|
|
|
#ifndef JPAPARTICLE_H
|
|
|
|
|
#define JPAPARTICLE_H
|
|
|
|
|
|
2021-08-28 07:25:03 -07:00
|
|
|
#include "dolphin/gx/GX.h"
|
2021-03-28 22:49:05 +02:00
|
|
|
#include "dolphin/types.h"
|
|
|
|
|
|
2021-05-23 03:09:59 -07:00
|
|
|
class JPABaseParticle;
|
|
|
|
|
|
|
|
|
|
struct JPABaseEmitter {
|
2021-08-28 07:25:03 -07:00
|
|
|
/* 8027EC60 */ void deleteAllParticle();
|
2021-05-23 03:09:59 -07:00
|
|
|
/* 8027EB60 */ void createChild(JPABaseParticle*);
|
|
|
|
|
/* 8027EA40 */ void createParticle();
|
|
|
|
|
/* 8027EF30 */ void getCurrentCreateNumber() const;
|
|
|
|
|
/* 8027EF40 */ void getDrawCount() const;
|
|
|
|
|
/* 8027EF50 */ void loadTexture(u8, _GXTexMapID);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class JPAParticleCallBack {
|
|
|
|
|
public:
|
|
|
|
|
virtual void temp(); // temp to build OK, remove later
|
|
|
|
|
~JPAParticleCallBack();
|
|
|
|
|
virtual void draw(JPABaseEmitter*, JPABaseParticle*);
|
|
|
|
|
virtual void execute(JPABaseEmitter*, JPABaseParticle*);
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* JPAPARTICLE_H */
|