mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-02 20:04:47 +00:00
17 lines
478 B
C++
17 lines
478 B
C++
#include "PlatformServices.h"
|
|
|
|
#include "../platform/sdl2/Input.h"
|
|
#include "../platform/sdl2/Profile.h"
|
|
#include "../platform/sdl2/Render.h"
|
|
#include "../platform/sdl2/Storage.h"
|
|
|
|
class IPlatformInput;
|
|
class IPlatformProfile;
|
|
class IPlatformRenderer;
|
|
class IPlatformStorage;
|
|
|
|
IPlatformInput& PlatformInput = InputManager;
|
|
IPlatformProfile& PlatformProfile = ProfileManager;
|
|
IPlatformRenderer& PlatformRender = RenderManager;
|
|
IPlatformStorage& PlatformStorage = StorageManager;
|