2023-10-13 10:50:53 +03:00
|
|
|
#ifndef GLOBAL_H
|
|
|
|
#define GLOBAL_H
|
|
|
|
|
2024-02-17 01:04:22 +03:00
|
|
|
#include "sys.h"
|
|
|
|
|
2024-04-16 02:38:19 +03:00
|
|
|
typedef enum OverlayCalls {
|
|
|
|
/* 90 */ OVLCALL_FO_CS_COMPLETE = 90,
|
|
|
|
/* 91 */ OVLCALL_BOSS309_UPDATE,
|
|
|
|
/* 92 */ OVLCALL_BOSS309_DRAW,
|
|
|
|
/* 93 */ OVLCALL_BOSS310_UPDATE,
|
|
|
|
/* 94 */ OVLCALL_BOSS310_DRAW,
|
|
|
|
/* 95 */ OVLCALL_ACTOR271_UPDATE,
|
|
|
|
/* 96 */ OVLCALL_ACTOR271_DRAW,
|
|
|
|
/* 97 */ OVLCALL_ACTOR272_UPDATE,
|
|
|
|
/* 98 */ OVLCALL_ACTOR272_DRAW,
|
|
|
|
/* 103 */ OVLCALL_TITLE_UPDATE = 103,
|
|
|
|
/* 104 */ OVLCALL_TITLE_DRAW,
|
|
|
|
/* 105 */ OVLCALL_MAP_UPDATE,
|
|
|
|
/* 106 */ OVLCALL_MAP_DRAW,
|
|
|
|
/* 107 */ OVLCALL_OPTION_UPDATE,
|
|
|
|
/* 108 */ OVLCALL_OPTION_DRAW,
|
|
|
|
/* 109 */ OVLCALL_GAME_OVER_UPDATE,
|
|
|
|
/* 110 */ OVLCALL_UNKMAP_DRAW,
|
|
|
|
} OverlayCalls;
|
|
|
|
|
2024-03-01 21:57:44 +03:00
|
|
|
#include "sf64audio_external.h"
|
2023-10-13 10:50:53 +03:00
|
|
|
#include "functions.h"
|
|
|
|
#include "variables.h"
|
2024-02-17 01:04:22 +03:00
|
|
|
#include "context.h"
|
2023-12-04 21:50:52 +03:00
|
|
|
#include "sf64mesg.h"
|
2024-03-11 20:54:44 +03:00
|
|
|
#include "assets/ast_radio.h"
|
2023-12-14 17:41:43 +03:00
|
|
|
#include "sf64object.h"
|
|
|
|
#include "sf64level.h"
|
2024-04-09 01:25:56 +03:00
|
|
|
#include "sf64event.h"
|
2023-12-20 22:32:50 +03:00
|
|
|
#include "sf64player.h"
|
2024-01-17 18:36:58 +03:00
|
|
|
#include "i1.h"
|
|
|
|
#include "i2.h"
|
|
|
|
#include "i3.h"
|
|
|
|
#include "i4.h"
|
|
|
|
#include "i5.h"
|
|
|
|
#include "i6.h"
|
2024-03-15 00:31:03 +03:00
|
|
|
#include "assets/ast_common.h"
|
2023-10-13 10:50:53 +03:00
|
|
|
|
2024-04-16 02:38:19 +03:00
|
|
|
|
|
|
|
|
2023-10-13 12:19:10 +03:00
|
|
|
#endif // GLOBAL_H
|