d_a_obj_rforce match (#686)

* d_a_obj_rforce match

* Adding suggestions (Pull Request zeldaret/tww/#686)
This commit is contained in:
Azurpourpre
2025-01-11 05:48:07 +01:00
committed by GitHub
parent 417ef8cacb
commit 3816b8d8f0
3 changed files with 95 additions and 29 deletions
+14 -6
View File
@@ -1,21 +1,29 @@
#ifndef D_A_OBJ_RFORCE_H
#define D_A_OBJ_RFORCE_H
#include "d/d_bg_s.h"
#include "f_op/f_op_actor.h"
namespace daObjRforce {
class Act_c : public fopAc_ac_c {
public:
void solidHeapCB(fopAc_ac_c*);
void create_heap();
static BOOL solidHeapCB(fopAc_ac_c*);
bool create_heap();
s32 _create();
BOOL _delete();
bool _delete();
void set_mtx();
BOOL _execute();
BOOL _draw();
bool _execute();
bool _draw();
virtual ~Act_c() {};
public:
/* Place member variables here */
static const char M_arcname[8];
/* 0x294 */ request_of_phase_process_class mPhs;
/* 0x29C */ J3DModel* mpModel;
/* 0x2A0 */ dBgW* mpBgw;
/* 0x2A4 */ Mtx mtx;
};
};