diff --git a/Facepunch.Steamworks/SteamUgc.cs b/Facepunch.Steamworks/SteamUgc.cs index c727181..d556ac9 100644 --- a/Facepunch.Steamworks/SteamUgc.cs +++ b/Facepunch.Steamworks/SteamUgc.cs @@ -182,5 +182,14 @@ public static async Task StopPlaytimeTrackingForAllItems() /// Resumes all workshop downloads /// public static void ResumeDownloads() => Internal.SuspendDownloads(false); - } + + /// + /// Show the app's latest Workshop EULA to the user in an overlay window, where they can accept it or not + /// + public static bool ShowWorkshopEula() + { + return Internal.ShowWorkshopEULA(); + } + + } }