mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:03:41 +00:00
16 lines
435 B
C++
16 lines
435 B
C++
#include "PlatformServices.h"
|
|
#include "StdFileIO.h"
|
|
|
|
#include "sdl2/Input.h"
|
|
#include "sdl2/Profile.h"
|
|
#include "sdl2/Render.h"
|
|
#include "sdl2/Storage.h"
|
|
|
|
static StdFileIO s_stdFileIO;
|
|
|
|
IPlatformFileIO& PlatformFileIO = s_stdFileIO;
|
|
IPlatformInput& PlatformInput = InputManager;
|
|
IPlatformProfile& PlatformProfile = ProfileManager;
|
|
IPlatformRenderer& PlatformRender = RenderManager;
|
|
IPlatformStorage& PlatformStorage = StorageManager;
|