Exemplo n.º 1
0
    /// <summary>
    /// Retrieves a list of all available assets
    /// </summary>
    /// <returns>
    /// List of assets and their details
    /// </returns>
    public async Task <List <AssetSummary> > GetAllAssets()
    {
        var task = await PlayFabMultiplayerAPI.ListAssetSummariesAsync(null);

        return(task.Result.AssetSummaries);
    }