You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
556 B
28 lines
556 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.Leaderboards
|
|
{
|
|
/// <summary>
|
|
/// An enumeration of the different leaderboard aggregation types.
|
|
/// </summary>
|
|
public enum LeaderboardAggregation : int
|
|
{
|
|
/// <summary>
|
|
/// Minimum
|
|
/// </summary>
|
|
Min = 0,
|
|
/// <summary>
|
|
/// Maximum
|
|
/// </summary>
|
|
Max = 1,
|
|
/// <summary>
|
|
/// Sum
|
|
/// </summary>
|
|
Sum = 2,
|
|
/// <summary>
|
|
/// Latest
|
|
/// </summary>
|
|
Latest = 3
|
|
}
|
|
}
|