mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
25 lines
508 B
C++
25 lines
508 B
C++
#ifndef D_A_E_BI_LEAF_H
|
|
#define D_A_E_BI_LEAF_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-enemies
|
|
* @class e_bi_leaf_class
|
|
* @brief Bomb Insect - Leaf
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class e_bi_leaf_class : public fopEn_enemy_c {
|
|
public:
|
|
/* 0x5AC */ request_of_phase_process_class mPhase;
|
|
/* 0x5B4 */ u8 field_0x5b4;
|
|
/* 0x5B8 */ J3DModel* mpModel;
|
|
/* 0x5BC */ s16 mAction;
|
|
/* 0x5BE */ s16 mTimer;
|
|
/* 0x5C0 */ u8 field_0x5c0[0x5D0 - 0x5C0];
|
|
};
|
|
|
|
#endif /* D_A_E_BI_LEAF_H */
|