4jcraft/minecraft/platform/Platform.h
MatthewBeshay 940b214539 refactor: apply C++ best practices to platform interfaces
Extract shared types to PlatformTypes.h, add [[nodiscard]] to query
methods, convert file-scope enums to enum class with compat aliases.
2026-03-31 20:05:59 +11:00

11 lines
251 B
C

#pragma once
#include "PlatformTypes.h"
#include "IPlatformInput.h"
#include "IPlatformNetwork.h"
#include "IPlatformProfile.h"
#include "IPlatformRender.h"
#include "IPlatformSound.h"
#include "IPlatformStorage.h"
#include "IPlatformUIController.h"