Unstable 0.17.0.0

This commit is contained in:
Markus Isberg
2022-02-26 02:43:01 +09:00
parent a83f375681
commit 3974067915
913 changed files with 32472 additions and 32364 deletions
@@ -15,7 +15,6 @@ namespace Steamworks.Ugc
AppId consumerApp;
AppId creatorApp;
string searchText;
bool returnLongDescription;
public Query( UgcType type ) : this()
{
@@ -106,18 +105,6 @@ namespace Steamworks.Ugc
}
#endregion
public Query WithLongDescription()
{
returnLongDescription = true;
return this;
}
public Query WithSummaryDescription()
{
returnLongDescription = false;
return this;
}
public async Task<ResultPage?> GetPageAsync( int page )
{
if ( page <= 0 ) throw new System.Exception( "page should be > 0" );
@@ -255,8 +242,6 @@ namespace Steamworks.Ugc
{
SteamUGC.Internal.SetSearchText( handle, searchText );
}
SteamUGC.Internal.SetReturnLongDescription( handle, returnLongDescription );
}
#endregion