From 088ba90f65021968b51a0349540d0e5d95437e89 Mon Sep 17 00:00:00 2001 From: Sabien Date: Wed, 9 Dec 2020 22:36:20 -0600 Subject: [PATCH] Add game managed UGC Items --- Facepunch.Steamworks/Structs/UgcEditor.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Facepunch.Steamworks/Structs/UgcEditor.cs b/Facepunch.Steamworks/Structs/UgcEditor.cs index e1c28ac..a4c2890 100644 --- a/Facepunch.Steamworks/Structs/UgcEditor.cs +++ b/Facepunch.Steamworks/Structs/UgcEditor.cs @@ -43,7 +43,12 @@ namespace Steamworks.Ugc /// Workshop item that is meant to be voted on for the purpose of selling in-game /// public static Editor NewMicrotransactionFile => new Editor( WorkshopFileType.Microtransaction ); - + + /// + /// Workshop item that is meant to be voted on for the purpose of selling in-game + /// + public static Editor NewMGameManagedFile => new Editor(WorkshopFileType.GameManagedItem); + public Editor ForAppId( AppId id ) { this.consumerAppId = id; return this; } string Title;