mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-24 09:24:04 +00:00
12 lines
293 B
C++
12 lines
293 B
C++
#pragma once
|
|
|
|
#include "IPlatformGame.h"
|
|
|
|
// Function accessor backed by a function-local static (Meyers singleton).
|
|
// Same shape as platform/profile/profile.h.
|
|
namespace platform_internal {
|
|
IPlatformGame& PlatformGame_get();
|
|
}
|
|
|
|
#define PlatformGame (::platform_internal::PlatformGame_get())
|