mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 07:18:47 -04:00
178194ccb2
* 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>
28 lines
462 B
C++
28 lines
462 B
C++
#ifndef D_A_B_BH_H
|
|
#define D_A_B_BH_H
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-enemies
|
|
* @class b_bh_class
|
|
* @brief Big Baba
|
|
*
|
|
* @details Forest Temple enemy.
|
|
*
|
|
*/
|
|
class b_bh_class : public fopEn_enemy_c {
|
|
private:
|
|
/* 0x5AC */ u8 field_0x568[0xf4c - 0x5AC];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(b_bh_class) == 0xf4c);
|
|
|
|
class daB_BH_HIO_c {
|
|
public:
|
|
/* 805AE26C */ daB_BH_HIO_c();
|
|
/* 805B3098 */ ~daB_BH_HIO_c();
|
|
};
|
|
|
|
|
|
#endif /* D_A_B_BH_H */
|