mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 10:17:13 +00:00
11 lines
225 B
C++
11 lines
225 B
C++
#include "StubPlatformGame.h"
|
|
|
|
#include "platform/game/game.h"
|
|
|
|
namespace platform_internal {
|
|
IPlatformGame& PlatformGame_get() {
|
|
static StubPlatformGame instance;
|
|
return instance;
|
|
}
|
|
} // namespace platform_internal
|