Files
tp/include/d/actor/d_a_obj_kjgjs.h
T
TakaRikka a6e76c0841 project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

37 lines
715 B
C++

#ifndef D_A_OBJ_KJGJS_H
#define D_A_OBJ_KJGJS_H
#include "d/d_bg_s_movebg_actor.h"
#include "d/d_com_inf_game.h"
/**
* @ingroup actors-objects
* @class daObjKJgjs_c
* @brief ???
*
* @details
*
*/
class daObjKJgjs_c : public dBgS_MoveBgActor, public request_of_phase_process_class {
public:
int create1st();
void setMtx();
int CreateHeap();
int Create();
int Execute(Mtx**);
int Draw();
int Delete();
virtual ~daObjKJgjs_c();
u32 getType() { return fopAcM_GetParamBit(this, 0, 4); }
private:
/* 0x5A8 */ Mtx mMtx[2];
/* 0x608 */ J3DModel* mpModel;
/* 0x60C */ s32 field_0x60c;
};
STATIC_ASSERT(sizeof(daObjKJgjs_c) == 0x610);
#endif /* D_A_OBJ_KJGJS_H */