mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-28 18:32:55 +00:00
11 lines
251 B
C++
11 lines
251 B
C++
#include "StubLeaderboard.h"
|
|
|
|
#include "platform/leaderboard/leaderboard.h"
|
|
|
|
namespace platform_internal {
|
|
IPlatformLeaderboard& PlatformLeaderboard_get() {
|
|
static StubLeaderboard instance;
|
|
return instance;
|
|
}
|
|
} // namespace platform_internal
|