summaryrefslogtreecommitdiffstats
path: root/src/main.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-06-18 14:34:35 +0200
committereray orçunus <erayorcunus@gmail.com>2019-06-18 14:34:35 +0200
commit886db44936757c4ace710b40713fbae1aa575c45 (patch)
treeaf3622689fedeac10516cfdcf5f3d1f0471746b6 /src/main.h
parentCPed fixes (diff)
parentsilly mistake in CFileLoader (diff)
downloadre3-886db44936757c4ace710b40713fbae1aa575c45.tar
re3-886db44936757c4ace710b40713fbae1aa575c45.tar.gz
re3-886db44936757c4ace710b40713fbae1aa575c45.tar.bz2
re3-886db44936757c4ace710b40713fbae1aa575c45.tar.lz
re3-886db44936757c4ace710b40713fbae1aa575c45.tar.xz
re3-886db44936757c4ace710b40713fbae1aa575c45.tar.zst
re3-886db44936757c4ace710b40713fbae1aa575c45.zip
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
new file mode 100644
index 00000000..45948b34
--- /dev/null
+++ b/src/main.h
@@ -0,0 +1,18 @@
+#pragma once
+
+struct GlobalScene
+{
+ RpWorld *world;
+ RwCamera *camera;
+};
+extern GlobalScene &Scene;
+
+extern uint8 work_buff[55000];
+extern char gString[256];
+extern wchar *gUString;
+
+class CSprite2d;
+
+void LoadingScreen(const char *str1, const char *str2, const char *splashscreen);
+CSprite2d *LoadSplash(const char *name);
+char *GetRandomSplashScreen(void);