mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-12 05:27:14 -04:00
26 lines
453 B
C++
26 lines
453 B
C++
#ifndef D_A_YGCWP_H
|
|
#define D_A_YGCWP_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daYgcwp_c : public fopAc_ac_c {
|
|
public:
|
|
void check_ev() const {}
|
|
void off_ev() const {}
|
|
|
|
void solidHeapCB(fopAc_ac_c*);
|
|
void create_heap();
|
|
s32 _create();
|
|
BOOL _delete();
|
|
void init_mtx();
|
|
void make_shine();
|
|
void set_timer();
|
|
BOOL _execute();
|
|
BOOL _draw();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_YGCWP_H */
|