From c4343ee3184a99fdafd425d39b339419518da305 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Thu, 15 Feb 2018 13:15:39 +0000 Subject: [PATCH] Added App.IsDlcInstalled --- Facepunch.Steamworks/Client/App.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Facepunch.Steamworks/Client/App.cs b/Facepunch.Steamworks/Client/App.cs index 8cd6b82..f448bf3 100644 --- a/Facepunch.Steamworks/Client/App.cs +++ b/Facepunch.Steamworks/Client/App.cs @@ -73,6 +73,14 @@ public bool IsInstalled(uint appId) return client.native.apps.BIsAppInstalled(appId); } + /// + /// Returns true if specified app is installed. + /// + public bool IsDlcInstalled( uint appId ) + { + return client.native.apps.BIsDlcInstalled( appId ); + } + /// /// Returns the appid's name /// Returns error if the current app Id does not have permission to use this interface