mirror of
https://github.com/encounter/oot-vc.git
synced 2026-03-30 11:33:51 -07:00
6dd6da43b8
* add emulator headers * review * order fix * revert macros.inc * review 2
24 lines
341 B
C
24 lines
341 B
C
#ifndef _CODERVL_H
|
|
#define _CODERVL_H
|
|
|
|
#include "emulator/xlObject.h"
|
|
#include "revolution/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Code {
|
|
/* 0x0 */ s32 nMode;
|
|
} Code; // size = 0x4
|
|
|
|
bool codeEvent(Code* pCode, s32 nEvent, void* pArgument);
|
|
|
|
extern _XL_OBJECTTYPE gClassCode;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|