Merge pull request #509 from ambid17/feature/game-managed-ugc

Add game managed UGC Items
This commit is contained in:
Garry Newman 2021-01-09 11:45:31 +00:00 committed by GitHub
commit 8f579f6e55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,12 @@ namespace Steamworks.Ugc
/// Workshop item that is meant to be voted on for the purpose of selling in-game
/// </summary>
public static Editor NewMicrotransactionFile => new Editor( WorkshopFileType.Microtransaction );
/// <summary>
/// Workshop item that is meant to be managed by the game. It is queryable by the API, but isn't visible on the web browser.
/// </summary>
public static Editor NewGameManagedFile => new Editor(WorkshopFileType.GameManagedItem);
public Editor ForAppId( AppId id ) { this.consumerAppId = id; return this; }
string Title;