mirror of
https://github.com/zeldaret/tp
synced 2026-05-28 08:25:48 -04:00
e7477b5048
* 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>
33 lines
660 B
C++
33 lines
660 B
C++
#ifndef D_A_OBJ_PDWALL_H
|
|
#define D_A_OBJ_PDWALL_H
|
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daObjPDwall_c
|
|
* @brief P - D Wall?
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daObjPDwall_c : public fopAc_ac_c {
|
|
public:
|
|
/* 80CAC7F8 */ void create1st();
|
|
/* 80CAC8DC */ void setMtx();
|
|
/* 80CACA44 */ void CreateHeap();
|
|
/* 80CACBA8 */ void Create();
|
|
/* 80CACCE0 */ void Execute(Mtx**);
|
|
/* 80CACF14 */ void Draw();
|
|
/* 80CACFD4 */ void Delete();
|
|
/* 80CAD140 */ ~daObjPDwall_c();
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0xa18 - 0x568];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daObjPDwall_c) == 0xa18);
|
|
|
|
|
|
#endif /* D_A_OBJ_PDWALL_H */
|