fopVw_Draw OK

This commit is contained in:
Pheenoh
2021-03-27 23:10:21 -04:00
parent 67ef027522
commit 5d26059b09
6 changed files with 45 additions and 22 deletions
+2
View File
@@ -2,6 +2,7 @@
#define F_F_OP_SCENE_H_
#include "dolphin/types.h"
#include "f/f_op/f_op_scene_tag.h"
#include "f/f_pc/f_pc_node.h"
class scene_class {
@@ -12,6 +13,7 @@ public:
/* 0x02C */ int* field_0x2C;
/* 0x030 */ u8 field_0x30[0x17C];
/* 0x1AC */ process_method_class* mpProcessMtd;
/* 0x1B0 */ scene_tag_class* field_0x1b0;
};
#endif
+4
View File
@@ -5,4 +5,8 @@
class scene_tag_class;
void fopScnTg_QueueTo(scene_tag_class* pSceneTag);
void fopScnTg_ToQueue(scene_tag_class* pSceneTag);
void fopScnTg_Init(scene_tag_class* pSceneTag, void* pData);
#endif
+13
View File
@@ -0,0 +1,13 @@
#ifndef F_F_OP_VIEW_H_
#define F_F_OP_VIEW_H_
#include "dolphin/types.h"
#include "f/f_pc/f_pc_leaf.h"
class view_class {
public:
/* 0x00 */ u8 field_0x00[0xc0];
/* 0xC0 */ leafdraw_method_class* pmLeafdrawMtd;
};
#endif