mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 15:21:08 -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>
29 lines
462 B
C++
29 lines
462 B
C++
#ifndef D_A_OBJ_SO_H
|
|
#define D_A_OBJ_SO_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class obj_so_class
|
|
* @brief Monkey Cage
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class obj_so_class : public fopAc_ac_c {
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x1bd0 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(obj_so_class) == 0x1bd0);
|
|
|
|
class daObj_So_HIO_c {
|
|
public:
|
|
/* 80CE03CC */ daObj_So_HIO_c();
|
|
/* 80CE3928 */ ~daObj_So_HIO_c();
|
|
};
|
|
|
|
|
|
#endif /* D_A_OBJ_SO_H */
|