implemented CFileMgr (barf)

This commit is contained in:
aap
2019-05-24 19:58:32 +02:00
parent 8384815dad
commit 886633293d
4 changed files with 330 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
#pragma warning(disable: 4244) // int to float
#pragma warning(disable: 4800) // int to bool
#pragma warning(disable: 4838) // narrowing conversion
#pragma warning(disable: 4996) // POSIX names
#include <stdint.h>
#include <math.h>
@@ -61,6 +62,8 @@ extern RsGlobalType &RsGlobal;
#define SCREENW (RsGlobal.maximumWidth)
#define SCREENH (RsGlobal.maximumHeight)
char *GetUserDirectory(void);
struct GlobalScene
{
RpWorld *world;