Files
tww/include/d/actor/d_a_ghostship.h
T
2023-12-01 14:29:22 -05:00

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 */