cave-story-solaris/src/Main.h
Clownacy 84d6b50bc2 Remove platform backend dependency on core engine
The backends need to have no dependency on the engine, otherwise
there'll be conflicts when we do stuff like include `window.h` in a
file that also happens to include "WindowsWrapper.h" somewhere.
2020-09-08 03:52:23 +01:00

19 lines
298 B
C++

#pragma once
#include <string>
#include "WindowsWrapper.h"
extern std::string gModulePath;
extern std::string gDataPath;
extern BOOL bFullscreen;
extern BOOL gbUseJoystick;
extern int gJoystickButtonTable[8];
extern BOOL gbUseJoystick;
void PutFramePerSecound(void);
BOOL SystemTask(void);