4jcraft/targets/platform/PlatformServices.cpp
2026-04-07 12:12:42 -05:00

14 lines
365 B
C++

#include "PlatformServices.h"
#include "StdFileIO.h"
#include "sdl2/Profile.h"
#include "sdl2/Render.h"
#include "sdl2/Storage.h"
static StdFileIO s_stdFileIO;
IPlatformFileIO& PlatformFileIO = s_stdFileIO;
IPlatformProfile& PlatformProfile = ProfileManager;
IPlatformRenderer& PlatformRender = RenderManager;
IPlatformStorage& PlatformStorage = StorageManager;