mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-26 23:26:45 -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>
32 lines
590 B
C++
32 lines
590 B
C++
#ifndef D_A_COACH_FIRE_H
|
|
#define D_A_COACH_FIRE_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-unsorted
|
|
* @class daCoachFire_c
|
|
* @brief Coach Fire
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daCoachFire_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80657B78 */ void create_init();
|
|
/* 80657C48 */ void initBaseMtx();
|
|
/* 80657CA8 */ void setBaseMtx();
|
|
/* 80657D2C */ void initCcSphere();
|
|
|
|
static u8 const M_attr[16];
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x714 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daCoachFire_c) == 0x714);
|
|
|
|
|
|
#endif /* D_A_COACH_FIRE_H */
|