mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-06 19:41:31 -04:00
26 lines
460 B
C++
26 lines
460 B
C++
#ifndef D_A_WBIRD_H
|
|
#define D_A_WBIRD_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daWbird_c : public fopAc_ac_c {
|
|
public:
|
|
inline BOOL draw();
|
|
inline BOOL execute();
|
|
void setAction(unsigned char) {}
|
|
|
|
void calcMtx();
|
|
void setStartPos();
|
|
void CreateInit();
|
|
s32 create();
|
|
void actionWait();
|
|
void actionEnd();
|
|
void actionMove();
|
|
void actionSelect();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
};
|
|
|
|
#endif /* D_A_WBIRD_H */
|