1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 14:37:36 +00:00
re3/src/main.h

22 lines
475 B
C
Raw Normal View History

2019-06-17 20:54:02 +00:00
#pragma once
struct GlobalScene
{
RpWorld *world;
RwCamera *camera;
};
extern GlobalScene &Scene;
extern uint8 work_buff[55000];
extern char gString[256];
extern wchar *gUString;
2019-06-18 07:50:26 +00:00
class CSprite2d;
2019-06-28 17:23:28 +00:00
void InitialiseGame(void);
2019-06-17 20:54:02 +00:00
void LoadingScreen(const char *str1, const char *str2, const char *splashscreen);
2019-06-28 17:23:28 +00:00
void LoadingIslandScreen(const char *levelName);
2019-06-18 07:50:26 +00:00
CSprite2d *LoadSplash(const char *name);
2019-06-28 17:23:28 +00:00
char *GetLevelSplashScreen(int level);
2019-06-18 07:50:26 +00:00
char *GetRandomSplashScreen(void);