/// <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)); }