Added SteamUGC.ShowWorkshopEula()

This commit is contained in:
Garry Newman 2021-09-24 14:26:15 +01:00
parent 1c98852d7c
commit 30f35c3aae

View File

@ -182,5 +182,14 @@ public static async Task<bool> StopPlaytimeTrackingForAllItems()
/// Resumes all workshop downloads /// Resumes all workshop downloads
/// </summary> /// </summary>
public static void ResumeDownloads() => Internal.SuspendDownloads(false); public static void ResumeDownloads() => Internal.SuspendDownloads(false);
}
/// <summary>
/// Show the app's latest Workshop EULA to the user in an overlay window, where they can accept it or not
/// </summary>
public static bool ShowWorkshopEula()
{
return Internal.ShowWorkshopEULA();
}
}
} }