diff --git a/Facepunch.Steamworks/SteamUgc.cs b/Facepunch.Steamworks/SteamUgc.cs index d556ac9..02611e1 100644 --- a/Facepunch.Steamworks/SteamUgc.cs +++ b/Facepunch.Steamworks/SteamUgc.cs @@ -191,5 +191,14 @@ namespace Steamworks return Internal.ShowWorkshopEULA(); } + /// + /// Retrieve information related to the user's acceptance or not of the app's specific Workshop EULA + /// + public static async Task GetWorkshopEulaStatus() + { + var status = await Internal.GetWorkshopEULAStatus(); + return status?.Accepted; + } + } }