From 50122c2d0ff645c896e2368f60a3a8967f724c62 Mon Sep 17 00:00:00 2001 From: aap Date: Mon, 17 Jun 2019 22:54:02 +0200 Subject: [PATCH] forgot main.h --- src/main.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main.h diff --git a/src/main.h b/src/main.h new file mode 100644 index 00000000..eba79117 --- /dev/null +++ b/src/main.h @@ -0,0 +1,14 @@ +#pragma once + +struct GlobalScene +{ + RpWorld *world; + RwCamera *camera; +}; +extern GlobalScene &Scene; + +extern uint8 work_buff[55000]; +extern char gString[256]; +extern wchar *gUString; + +void LoadingScreen(const char *str1, const char *str2, const char *splashscreen);