mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -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>
33 lines
674 B
C++
33 lines
674 B
C++
#ifndef D_A_OBJ_THASHI_H
|
|
#define D_A_OBJ_THASHI_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjTHASHI_c
|
|
* @brief T Pillar
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjTHASHI_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80D0C238 */ void initCcCylinder();
|
|
/* 80D0C354 */ void setBaseMtx();
|
|
/* 80D0C654 */ void CreateHeap();
|
|
/* 80D0C8B4 */ void create();
|
|
/* 80D0CE70 */ void Create();
|
|
/* 80D0CEB4 */ void Execute(f32 (**)[3][4]);
|
|
/* 80D0CEE0 */ void Draw();
|
|
/* 80D0D140 */ void Delete();
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x1bbc - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daObjTHASHI_c) == 0x1bbc);
|
|
|
|
|
|
#endif /* D_A_OBJ_THASHI_H */
|