Added WithDifferentApp to set consumer and creator App Id for UGCQuery

This commit is contained in:
Ben 2024-03-20 20:28:38 +00:00
parent 4463739be5
commit fd124d461d

View File

@ -202,6 +202,13 @@ namespace Steamworks.Ugc
excludedTags.Add( tag ); excludedTags.Add( tag );
return this; return this;
} }
public QueryType WithDifferentApp( AppId consumerAppId, AppId creatorAppId )
{
consumerApp = consumerAppId;
creatorApp = creatorAppId;
return this;
}
void ApplyConstraints( UGCQueryHandle_t handle ) void ApplyConstraints( UGCQueryHandle_t handle )
{ {
@ -317,4 +324,4 @@ namespace Steamworks.Ugc
#endregion #endregion
} }
} }