mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-29 02:03:38 +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;
|