summaryrefslogtreecommitdiffstats
path: root/src/core/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/main.h')
-rw-r--r--src/core/main.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/main.h b/src/core/main.h
new file mode 100644
index 00000000..bdb0e008
--- /dev/null
+++ b/src/core/main.h
@@ -0,0 +1,22 @@
+#pragma once
+
+struct GlobalScene
+{
+ RpWorld *world;
+ RwCamera *camera;
+};
+extern GlobalScene &Scene;
+
+extern uint8 work_buff[55000];
+extern char gString[256];
+extern wchar *gUString;
+extern bool &b_FoundRecentSavedGameWantToLoad;
+
+class CSprite2d;
+
+void InitialiseGame(void);
+void LoadingScreen(const char *str1, const char *str2, const char *splashscreen);
+void LoadingIslandScreen(const char *levelName);
+CSprite2d *LoadSplash(const char *name);
+char *GetLevelSplashScreen(int level);
+char *GetRandomSplashScreen(void);