mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-06 11:37:25 -04:00
24 lines
441 B
C++
24 lines
441 B
C++
#ifndef D_A_OBJ_GTAKI_H
|
|
#define D_A_OBJ_GTAKI_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daObjGtaki_c : public fopAc_ac_c {
|
|
public:
|
|
inline cPhs_State _create();
|
|
inline bool _delete();
|
|
inline bool _draw();
|
|
inline bool _execute();
|
|
void set_effect() {}
|
|
|
|
void setDummyTexture();
|
|
void CreateHeap();
|
|
void CreateInit();
|
|
void set_mtx();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_OBJ_GTAKI_H */
|