Reorganize includes to match asm

Former-commit-id: 848752477e
This commit is contained in:
2022-07-18 18:42:58 -04:00
parent 6a471a6abe
commit bed1bb88de
56 changed files with 93 additions and 98 deletions

View File

@@ -0,0 +1,26 @@
#ifndef _COSCONTEXT_HPP
#define _COSCONTEXT_HPP
#include "types.h"
#include "gx_struct.h"
class COsContext {
public:
private:
int x0_right;
int x4_bottom;
int x8_left;
int xc_top;
int x10_format;
int x14_consoleType;
void* x18_arenaLo1;
void* x1c_arenaHi;
void* x20_arenaLo2;
void* x24_frameBuffer1;
void* x28_frameBuffer2;
int x2c_frameBufferSize;
GXRenderModeObj x30_renderMode;
};
#endif