Files
tp/include/d/bg/d_bg_pc.h
T
TakaRikka 74ed2da8bc d_bg_s (#159)
* wip

* d_bg_s

* most of d_bg_s

* small cleanup

* clang

* fixes
2021-11-10 19:56:51 +01:00

23 lines
357 B
C++

#ifndef D_BG_D_BG_PC_H
#define D_BG_D_BG_PC_H
#include "dolphin/types.h"
struct sBgPc {
/* 0x00 */ u32 code0;
/* 0x04 */ u32 code1;
/* 0x08 */ u32 code2;
/* 0x0C */ u32 code3;
/* 0x10 */ u32 code4;
}; // Size: 0x14
class dBgPc {
public:
void setCode(sBgPc&);
private:
/* 0x0 */ sBgPc m_code;
};
#endif /* D_BG_D_BG_PC_H */