mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
12eb254d76
* 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>
22 lines
351 B
C++
22 lines
351 B
C++
#ifndef D_A_NPC_KDK_H
|
|
#define D_A_NPC_KDK_H
|
|
|
|
#include "d/actor/d_a_npc.h"
|
|
|
|
/**
|
|
* @ingroup actors-npcs
|
|
* @class daNpcKdk_c
|
|
* @brief Temporary Cutscene Guy?
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daNpcKdk_c : public fopAc_ac_c {
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0xFA0 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daNpcKdk_c) == 0xFA0);
|
|
|
|
#endif /* D_A_NPC_KDK_H */
|