mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 22:53:39 +00:00
17 lines
471 B
C++
17 lines
471 B
C++
#include "PlatformServices.h"
|
|
|
|
#include "../4J.Input/4J_Input.h"
|
|
#include "../4J.Profile/4J_Profile.h"
|
|
#include "../4J.Render/4J_Render.h"
|
|
#include "../4J.Storage/4J_Storage.h"
|
|
|
|
class IPlatformInput;
|
|
class IPlatformProfile;
|
|
class IPlatformRender;
|
|
class IPlatformStorage;
|
|
|
|
IPlatformInput& PlatformInput = InputManager;
|
|
IPlatformProfile& PlatformProfile = ProfileManager;
|
|
IPlatformRender& PlatformRender = RenderManager;
|
|
IPlatformStorage& PlatformStorage = StorageManager;
|