mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* lv4railwall / lv4sand / lv4slidewall done and wii build fix * fix Mtx** parameters * add some notes about wii compiler version * Remove dol2asm include --------- Co-authored-by: hatal175 <hatal175@users.noreply.github.com>
36 lines
822 B
C++
36 lines
822 B
C++
#ifndef D_A_OBJ_H_SAKU_H
|
|
#define D_A_OBJ_H_SAKU_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjH_Saku_c
|
|
* @brief H - Fence
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjH_Saku_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80C1552C */ void BreakSet();
|
|
/* 80C15810 */ void SpeedSet(cXyz*, cXyz*, f32);
|
|
/* 80C15A4C */ void Action();
|
|
/* 80C15E00 */ void initBaseMtx();
|
|
/* 80C15E44 */ void setBaseMtx();
|
|
/* 80C161E8 */ void CreateHeap();
|
|
/* 80C1629C */ void Create();
|
|
/* 80C162F4 */ void Execute(Mtx**);
|
|
/* 80C16340 */ void Draw();
|
|
/* 80C1641C */ void Delete();
|
|
|
|
/* 0x568 */ u8 field_0x568[0x5e0 - 0x568];
|
|
/* 0x5E0 */ cXyz field_0x5e0;
|
|
/* 0x5EC */ u8 field_0x5ec[0x850 - 0x5ec];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daObjH_Saku_c) == 0x850);
|
|
|
|
|
|
#endif /* D_A_OBJ_H_SAKU_H */
|