Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Facepunch.Steamworks/Structs/UgcQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@ public QueryType WithoutTag( string tag )
excludedTags.Add( tag );
return this;
}

public QueryType WithDifferentApp( AppId consumerAppId, AppId creatorAppId )
{
consumerApp = consumerAppId;
creatorApp = creatorAppId;
return this;
}

void ApplyConstraints( UGCQueryHandle_t handle )
{
Expand Down Expand Up @@ -317,4 +324,4 @@ private void ApplyReturns(UGCQueryHandle_t handle)

#endregion
}
}
}