mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-23 05:39:39 -05:00
9 lines
205 B
C#
9 lines
205 B
C#
namespace Sandbox.Mounting;
|
|
|
|
internal interface ISteamIntegration
|
|
{
|
|
public bool IsAppInstalled( long appid );
|
|
public bool IsDlcInstalled( long appid );
|
|
public string GetAppDirectory( long appid );
|
|
}
|