mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 03:47:52 -04:00
25 lines
519 B
C++
25 lines
519 B
C++
#ifndef JPAFIELD_H
|
|
#define JPAFIELD_H
|
|
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
class JPADataBlockLinkInfo;
|
|
class JPAEmitterInfo;
|
|
class JPAFieldData;
|
|
class JPABaseParticle;
|
|
|
|
class JPAFieldManager {
|
|
public:
|
|
void initField(JPADataBlockLinkInfo*, JPAEmitterInfo*);
|
|
void init(JPABaseParticle*);
|
|
void preCalc();
|
|
void calc(JPABaseParticle*);
|
|
void deleteField(JPAFieldData*);
|
|
void deleteAllField();
|
|
|
|
/* 0x00 */ JSUPtrList mList;
|
|
/* 0x0C */ JSUPtrList* field_0x0c;
|
|
};
|
|
|
|
#endif /* JPAFIELD_H */
|