summaryrefslogtreecommitdiff
path: root/include/f_op/f_op_kankyo.h
blob: 90a568e6b4940232310b066fb15058dac0c38451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef F_OP_KANKYO_H
#define F_OP_KANKYO_H

#include "SSystem/SComponent/c_xyz.h"
#include "f_pc/f_pc_leaf.h"

struct kankyo_method_class {
    /* 0x00 */ leafdraw_method_class base;
};

struct kankyo_class {
    /* 0x00 */ leafdraw_class base;
    /* 0xC0 */ int mBsType;
    /* 0xC4 */ create_tag_class draw_tag;
    /* 0xD8 */ kankyo_method_class* sub_method;
    /* 0xDC */ cXyz mPos;
    /* 0xE8 */ cXyz mScale;
    /* 0xF4 */ u32 mParam;
};

struct kankyo_process_profile_definition {
    /* 0x00 */ leaf_process_profile_definition base;
    /* 0x24 */ kankyo_method_class* sub_method;
};  // Size: 0x28

struct sub_kankyo__class {
    /* 0x00 */ kankyo_class base;
};

extern leafdraw_method_class g_fopKy_Method;

#endif /* F_OP_KANKYO_H */