Exemple #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="options"></param>
 /// <returns></returns>
 public SteamGetRecentlyPlayedGamesResponse GetRecentlyPlayedGames(SteamGetRecentlyPlayedGamesOptions options)
 {
     return(SteamGetRecentlyPlayedGamesResponse.ParseResponse(Raw.GetRecentlyPlayedGames(options)));
 }
Exemple #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="steamId"></param>
 /// <param name="count"></param>
 /// <returns></returns>
 public SteamGetRecentlyPlayedGamesResponse GetRecentlyPlayedGames(ulong steamId, uint?count = null)
 {
     return(SteamGetRecentlyPlayedGamesResponse.ParseResponse(Raw.GetRecentlyPlayedGames(steamId, count)));
 }