switch to dtk setup (#2203)

* 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>
This commit is contained in:
TakaRikka
2024-10-10 07:29:58 -07:00
committed by GitHub
parent 3769ea47a6
commit 178194ccb2
33438 changed files with 370506 additions and 3055930 deletions
+44
View File
@@ -0,0 +1,44 @@
#ifndef D_A_OBJ_TIMER_H
#define D_A_OBJ_TIMER_H
#include "f_op/f_op_actor_mng.h"
/**
* @ingroup actors-objects
* @class daObjTimer
* @brief Timer
*
* @details
*
*/
class daObjTimer : public fopAc_ac_c {
public:
class Act_c {
public:
struct Prm_e {};
/* 80485198 */ void _create();
/* 8048526C */ bool _delete();
/* 80485274 */ void mode_wait_init();
/* 80485284 */ void mode_wait();
/* 804852E0 */ void mode_count_init();
/* 80485324 */ void mode_count();
/* 804854BC */ void _execute();
};
private:
/* 0x568 */ u8 field_0x568[0x574 - 0x568];
};
STATIC_ASSERT(sizeof(daObjTimer) == 0x574);
struct daObj {
public:
template <typename A1>
void PrmAbstract(/* ... */);
/* 8048561C */ /* daObj::PrmAbstract<daObjTimer::Act_c::Prm_e> */
void func_8048561C(void* _this, fopAc_ac_c const*, daObjTimer::Act_c::Prm_e,
daObjTimer::Act_c::Prm_e);
};
#endif /* D_A_OBJ_TIMER_H */