/// <summary> /// /// </summary> /// <param name="options"></param> /// <returns></returns> public SteamGetOwnedGamesResponse GetOwnedGames(SteamGetOwnedGamesOptions options) { return(SteamGetOwnedGamesResponse.ParseResponse(Raw.GetOwnedGames(options))); }
/// <summary> /// /// </summary> /// <param name="steamId"></param> /// <param name="includeAppInfo"></param> /// <param name="includePlayedFreeGames"></param> /// <param name="appIdsFilter"></param> /// <returns></returns> public SteamGetOwnedGamesResponse GetOwnedGames(ulong steamId, bool?includeAppInfo = null, bool?includePlayedFreeGames = null, uint?appIdsFilter = null) { return(SteamGetOwnedGamesResponse.ParseResponse(Raw.GetOwnedGames(steamId, includeAppInfo, includePlayedFreeGames, appIdsFilter))); }