mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-29 16:32:58 -04:00
36 lines
753 B
C++
36 lines
753 B
C++
#ifndef D_A_GHOSTSHIP_H
|
|
#define D_A_GHOSTSHIP_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
|
|
class daGhostship_c : public fopAc_ac_c {
|
|
public:
|
|
bool checkInShip() { return mbInShip; }
|
|
void getAlpha() {}
|
|
void setMtx() {}
|
|
|
|
inline s32 _create();
|
|
inline BOOL _delete();
|
|
inline BOOL _draw();
|
|
inline BOOL _execute();
|
|
|
|
void _createHeap();
|
|
void pathMove();
|
|
void modeWaitInit();
|
|
void modeWait();
|
|
void modeRealize();
|
|
void _pathMove(cXyz*, cXyz*, cXyz*);
|
|
void modePathMoveInit();
|
|
void modePathMove();
|
|
void modeProcCall();
|
|
void createInit();
|
|
void getArg();
|
|
|
|
public:
|
|
/* Place member variables here */
|
|
/* 0x290 */ u8 m290[0x708 - 0x290];
|
|
/* 0x708 */ bool mbInShip;
|
|
};
|
|
|
|
#endif /* D_A_GHOSTSHIP_H */
|