diff --git a/Facepunch.Steamworks/Structs/UgcQuery.cs b/Facepunch.Steamworks/Structs/UgcQuery.cs index 79893bb..e67b0ee 100644 --- a/Facepunch.Steamworks/Structs/UgcQuery.cs +++ b/Facepunch.Steamworks/Structs/UgcQuery.cs @@ -202,6 +202,13 @@ namespace Steamworks.Ugc excludedTags.Add( tag ); return this; } + + public QueryType WithDifferentApp( AppId consumerAppId, AppId creatorAppId ) + { + consumerApp = consumerAppId; + creatorApp = creatorAppId; + return this; + } void ApplyConstraints( UGCQueryHandle_t handle ) { @@ -317,4 +324,4 @@ namespace Steamworks.Ugc #endregion } -} \ No newline at end of file +}