2023-10-13 04:50:53 -03:00
|
|
|
#ifndef GLOBAL_H
|
|
|
|
#define GLOBAL_H
|
|
|
|
|
2023-10-29 16:19:30 -05:00
|
|
|
#include "PR/xstdio.h"
|
2023-10-23 15:02:01 -05:00
|
|
|
#include "PR/os_internal.h"
|
2023-10-29 16:19:30 -05:00
|
|
|
#include "PR/controller.h"
|
2023-10-23 15:02:01 -05:00
|
|
|
#include "libultra/ultra64.h"
|
|
|
|
#include "libc/math.h"
|
|
|
|
#include "libc/stdarg.h"
|
|
|
|
#include "libc/stdbool.h"
|
|
|
|
#include "libc/stdint.h"
|
|
|
|
#include "libc/stddef.h"
|
|
|
|
#include "libc/string.h"
|
2023-10-13 04:50:53 -03:00
|
|
|
#include "functions.h"
|
|
|
|
#include "variables.h"
|
2023-10-23 13:01:29 -03:00
|
|
|
#include "structs.h"
|
2023-10-13 04:50:53 -03:00
|
|
|
#include "macros.h"
|
2023-10-18 19:54:19 -03:00
|
|
|
#include "sf64math.h"
|
2023-12-04 12:50:52 -06:00
|
|
|
#include "sf64mesg.h"
|
2023-12-14 08:41:43 -06:00
|
|
|
#include "sf64object.h"
|
|
|
|
#include "sf64level.h"
|
|
|
|
#include "sf64thread.h"
|
2023-12-20 13:32:50 -06:00
|
|
|
#include "sf64player.h"
|
2023-11-13 13:18:43 -03:00
|
|
|
#include "gfx.h"
|
2023-10-13 04:50:53 -03:00
|
|
|
|
2023-10-13 06:19:10 -03:00
|
|
|
#endif // GLOBAL_H
|