Example #1
0
 /// <summary>
 /// Get the user's achievement and stats for a game
 /// </summary>
 /// <param name="steamID">Steam ID of the user</param>
 /// <param name="appID">ID of the game</param>
 /// <returns></returns>
 public UserGameStats GetUserStatsForGame(long steamID, long appID)
 {
     ThrowMissingApiKey();
     return(UserStatsEndpoints.GetUserStatsForGame(ApiKey, steamID, appID));
 }
Example #2
0
 /// <summary>
 /// Get the schema info of a game for achievement and stats
 /// </summary>
 /// <param name="appID">Id of the game</param>
 /// <returns></returns>
 public GameStatsSchema GetSchemaForGame(long appID)
 {
     ThrowMissingApiKey();
     return(UserStatsEndpoints.GetSchemaForGame(ApiKey, appID));
 }