mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-30 08:56:28 -04:00
26 lines
501 B
C++
26 lines
501 B
C++
#ifndef D_A_ARROW_LIGHTEFF_H
|
|
#define D_A_ARROW_LIGHTEFF_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daArrow_Lighteff_c : public fopAc_ac_c {
|
|
public:
|
|
inline s32 _create();
|
|
inline BOOL _delete();
|
|
inline BOOL _draw();
|
|
inline BOOL _execute();
|
|
void brk_play() {}
|
|
|
|
void setTopPos();
|
|
void setPointLight();
|
|
void delete_particle();
|
|
void CreateHeap();
|
|
void CreateInit();
|
|
void set_mtx();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_ARROW_LIGHTEFF_H */
|