4jcraft/targets/platform/PlatformServices.cpp
Tropical e57105c5b3
Some checks are pending
Build (Linux, x86-64) / build-linux (push) Waiting to run
Format Check / clang-format (push) Waiting to run
rename IPlatformRender to IPlatformRenderer
2026-04-01 20:16:33 -05:00

17 lines
475 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 IPlatformRenderer;
class IPlatformStorage;
IPlatformInput& PlatformInput = InputManager;
IPlatformProfile& PlatformProfile = ProfileManager;
IPlatformRenderer& PlatformRender = RenderManager;
IPlatformStorage& PlatformStorage = StorageManager;