Rename RequestGlobalStats to RequestGlobalStatsAsync

This commit is contained in:
Garry Newman 2020-02-24 12:58:46 +00:00
parent 29f426baf0
commit faee6f6cf2

View File

@ -144,7 +144,7 @@ namespace Steamworks
/// </summary>
/// <param name="days">How many days of day-by-day history to retrieve in addition to the overall totals. The limit is 60.</param>
/// <returns>OK indicates success, InvalidState means you need to call RequestCurrentStats first, Fail means the remote call failed</returns>
public static async Task<Result> RequestGlobalStats( int days )
public static async Task<Result> RequestGlobalStatsAsync( int days )
{
var result = await SteamUserStats.Internal.RequestGlobalStats( days );
if ( !result.HasValue ) return Result.Fail;