diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-04-30 19:41:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 19:41:40 +0300 |
commit | 32c0e050f72df12ec9e3cf1f064d03d741fed977 (patch) | |
tree | 92d7a51a90b15de7b7323dd2b66b5aac07976665 /arm9/lib/include/nitro.h | |
parent | 0dcb9b71fd54d7374dab4012c87a0a4dc5c5ed11 (diff) | |
parent | f0f2ea83dacfd41ed625e2933af3de9696e47699 (diff) |
Merge pull request #44 from ProjectRevoTPP/os_lib
example compilation for OS_arena
Diffstat (limited to 'arm9/lib/include/nitro.h')
-rw-r--r-- | arm9/lib/include/nitro.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arm9/lib/include/nitro.h b/arm9/lib/include/nitro.h new file mode 100644 index 00000000..8cf603f5 --- /dev/null +++ b/arm9/lib/include/nitro.h @@ -0,0 +1,18 @@ +#ifndef POKEDIAMOND_NITRO_H +#define POKEDIAMOND_NITRO_H + +#ifdef __cplusplus +extern "C" { +#endif + +// Include all nitro files +#include "types.h" +#include "consts.h" +#include "os.h" +#include "mmap.h" + +#ifdef __cplusplus +}; +#endif + +#endif //POKEDIAMOND_NITRO_H |