mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-31 09:21:34 -04:00
33 lines
663 B
C++
33 lines
663 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:
|
|
inline s32 _create();
|
|
inline BOOL _delete();
|
|
inline BOOL _draw();
|
|
inline BOOL _execute();
|
|
void checkInShip() {}
|
|
void getAlpha() {}
|
|
void setMtx() {}
|
|
|
|
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 */
|
|
};
|
|
|
|
#endif /* D_A_GHOSTSHIP_H */
|