mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 20:01:27 -04:00
24 lines
422 B
C++
24 lines
422 B
C++
#ifndef D_A_TPOTA_H
|
|
#define D_A_TPOTA_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class JPABaseParticle;
|
|
|
|
class daTpota_c : public fopAc_ac_c {
|
|
public:
|
|
s32 _create();
|
|
BOOL _delete();
|
|
void make_ripple(cXyz);
|
|
void check_water_h(JPABaseParticle*, float);
|
|
void clear_splash();
|
|
void renew_splash();
|
|
BOOL _execute();
|
|
BOOL _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_TPOTA_H */
|