mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-29 16:14:54 -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
620 B
C++
32 lines
620 B
C++
#ifndef D_A_PASSER_MNG_H
|
|
#define D_A_PASSER_MNG_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-unsorted
|
|
* @class daPasserMng_c
|
|
* @brief Hylian Passerby Manager?
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daPasserMng_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80D45738 */ void execute();
|
|
/* 80D4597C */ void getPasserParam();
|
|
/* 80D45E14 */ void getLuggageParamHigh(u32);
|
|
/* 80D46768 */ void create();
|
|
/* 80D467C0 */ void create_init();
|
|
|
|
static void* mGroupTbl[4];
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x598 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daPasserMng_c) == 0x598);
|
|
|
|
|
|
#endif /* D_A_PASSER_MNG_H */
|