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>
29 lines
446 B
C++
29 lines
446 B
C++
#ifndef D_A_NPC_DU_H
|
|
#define D_A_NPC_DU_H
|
|
|
|
#include "d/actor/d_a_npc.h"
|
|
|
|
/**
|
|
* @ingroup actors-npcs
|
|
* @class npc_du_class
|
|
* @brief Duck
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class npc_du_class : public fopAc_ac_c {
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0xa00 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(npc_du_class) == 0xa00);
|
|
|
|
class daNpc_Du_HIO_c {
|
|
public:
|
|
/* 809AFD4C */ daNpc_Du_HIO_c();
|
|
/* 809B17A0 */ ~daNpc_Du_HIO_c();
|
|
};
|
|
|
|
|
|
#endif /* D_A_NPC_DU_H */
|