mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 06:45:56 +00:00
33 lines
749 B
C++
33 lines
749 B
C++
#pragma once
|
|
|
|
struct GlobalScene
|
|
{
|
|
RpWorld *world;
|
|
RwCamera *camera;
|
|
};
|
|
extern GlobalScene Scene;
|
|
|
|
extern uint8 work_buff[55000];
|
|
extern char gString[256];
|
|
extern char gString2[512];
|
|
extern wchar gUString[256];
|
|
extern wchar gUString2[256];
|
|
extern bool gbPrintShite;
|
|
extern bool gbModelViewer;
|
|
|
|
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);
|
|
void DestroySplashScreen(void);
|
|
char *GetLevelSplashScreen(int level);
|
|
char *GetRandomSplashScreen(void);
|
|
void LittleTest(void);
|
|
void ValidateVersion();
|
|
void ResetLoadingScreenBar(void);
|
|
#ifndef MASTER
|
|
void TheModelViewer(void);
|
|
#endif
|