mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-18 23:16:50 -04:00
21 lines
354 B
C++
21 lines
354 B
C++
#ifndef D_A_OBJ_PBKA_H
|
|
#define D_A_OBJ_PBKA_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daObjPbka_c : public fopAc_ac_c {
|
|
public:
|
|
inline s32 _create();
|
|
inline BOOL _delete();
|
|
inline BOOL _draw();
|
|
inline BOOL _execute();
|
|
|
|
void CreateInit();
|
|
void set_mtx();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_OBJ_PBKA_H */
|