run IWYU on entire codebase

This commit is contained in:
Tropical
2026-04-01 18:02:06 -05:00
parent 729aad5f06
commit 6eb277c9aa
1125 changed files with 5104 additions and 2009 deletions
+5
View File
@@ -5,6 +5,11 @@
#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;
+5
View File
@@ -5,6 +5,11 @@
#include "IPlatformRender.h"
#include "IPlatformStorage.h"
class IPlatformInput;
class IPlatformProfile;
class IPlatformRender;
class IPlatformStorage;
// Interface references to platform services. World code uses these
// instead of the concrete 4J globals directly. The bindings are
// established by the app layer at startup.