Files
UnrealEngine/Engine/Plugins/Online/Android/OnlineSubsystemGooglePlay/Source/Private/OnlineLeaderboardGooglePlayCommon.h
2025-05-18 13:04:45 +08:00

14 lines
268 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Containers/UnrealString.h"
struct FGooglePlayLeaderboardScore
{
// Leaderboard ID as shown in GooglePlay Console
FString GooglePlayLeaderboardId;
// Leaderboard score
int64 Score = 0;
};