mirror of
https://github.com/encounter/oot-gc.git
synced 2026-03-30 11:33:44 -07:00
17 lines
280 B
C
17 lines
280 B
C
#ifndef _CODEGCN_H
|
|
#define _CODEGCN_H
|
|
|
|
#include "dolphin.h"
|
|
#include "emulator/xlObject.h"
|
|
|
|
// __anon_0x57A1
|
|
typedef struct Code {
|
|
/* 0x0 */ s32 nMode;
|
|
} Code; // size = 0x4
|
|
|
|
bool codeEvent(Code* pCode, s32 nEvent, void* pArgument);
|
|
|
|
extern _XL_OBJECTTYPE gClassCode;
|
|
|
|
#endif
|