mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -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
629 B
C++
32 lines
629 B
C++
#ifndef D_A_OBJ_GRAWALL_H
|
|
#define D_A_OBJ_GRAWALL_H
|
|
|
|
#include "d/d_com_inf_game.h"
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjGraWall_c
|
|
* @brief Goron Wall?
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjGraWall_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80C10BF8 */ int Create();
|
|
/* 80C10DD8 */ int Execute();
|
|
/* 80C10E78 */ int Delete();
|
|
/* 80C10E80 */ void col_init();
|
|
/* 80C10ED4 */ void col_set();
|
|
|
|
private:
|
|
/* 0x568 */ dCcD_Stts mStts;
|
|
/* 0x5A4 */ dCcD_Cyl mCyl;
|
|
/* 0x6E0 */ u8 field_0x6e0;
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daObjGraWall_c) == 0x6E4);
|
|
|
|
#endif /* D_A_OBJ_GRAWALL_H */
|