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-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-10-23 19:01:29 +03:00
|
|
|
#include "structs.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
|
|
|
|
2023-10-13 12:19:10 +03:00
|
|
|
#endif // GLOBAL_H
|