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>
33 lines
716 B
C++
33 lines
716 B
C++
#ifndef D_A_OBJ_COWDOOR_H
|
|
#define D_A_OBJ_COWDOOR_H
|
|
|
|
#include "d/d_bg_s_movebg_actor.h"
|
|
#include "d/d_com_inf_game.h"
|
|
|
|
/**
|
|
* @ingroup actors-objects
|
|
* @class daCowdoor_c
|
|
* @brief Ordon Ranch Stable Door
|
|
*
|
|
* @details
|
|
*
|
|
*/
|
|
class daCowdoor_c : public dBgS_MoveBgActor {
|
|
public:
|
|
/* 80BCC7F8 */ void setBaseMtx();
|
|
/* 80BCC86C */ int Create();
|
|
/* 80BCC8C4 */ int CreateHeap();
|
|
/* 80BCC93C */ int create();
|
|
/* 80BCCA1C */ int Execute(Mtx**);
|
|
/* 80BCCA48 */ int Draw();
|
|
/* 80BCCAEC */ int Delete();
|
|
|
|
private:
|
|
/* 0x5A0 */ request_of_phase_process_class field_0x5a0;
|
|
/* 0x5A8 */ J3DModel* field_0x5a8;
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daCowdoor_c) == 0x5AC);
|
|
|
|
#endif /* D_A_OBJ_COWDOOR_H */
|