mirror of
https://github.com/zeldaret/tp
synced 2026-06-03 02:29:59 -04:00
221f40e609
* add "global.h" to files that use it * add MSL_C includes to files that use them * remove dolphin includes from headers that don't need them * remove JSupport includes from headers that don't need them * remove JKernel includes from headers that don't need them * remove JUtility includes from headers that don't need them * remove J3D includes from headers that don't need them * remove J2D includes from headers that don't need them * remove JAudio2 includes from headers that don't need them * remove Z2AudioLib includes from headers that don't need them * remove JMessage includes from headers that don't need them * remove JParticle includes from headers that don't need them * remove SComponent includes from headers that don't need them * remove dol includes from headers that don't need them * sort includes
27 lines
667 B
C++
27 lines
667 B
C++
#ifndef F_F_OP_SCENE_H_
|
|
#define F_F_OP_SCENE_H_
|
|
|
|
#include "dolphin/types.h"
|
|
#include "f_op/f_op_scene_tag.h"
|
|
#include "f_pc/f_pc_node.h"
|
|
|
|
struct request_of_phase_process_class;
|
|
class mDoDvdThd_command_c;
|
|
|
|
typedef struct scene_process_profile_definition {
|
|
/* 0x00 */ node_process_profile_definition mBase;
|
|
/* 0x20 */ process_method_class* mpMtd; // Subclass methods
|
|
/* 0x24 */ u32 field_0x24; // padding?
|
|
} scene_process_profile_definition;
|
|
|
|
class scene_class {
|
|
public:
|
|
/* 0x000 */ process_node_class mBase;
|
|
/* 0x1AC */ process_method_class * mpMtd;
|
|
/* 0x1B0 */ scene_tag_class mScnTg;
|
|
};
|
|
|
|
extern leafdraw_method_class g_fopScn_Method;
|
|
|
|
#endif
|