diff --git a/PCK-Studio/Internal/EditorForm.cs b/PCK-Studio/Internal/EditorForm.cs index 1cf19eff..4ed3de08 100644 --- a/PCK-Studio/Internal/EditorForm.cs +++ b/PCK-Studio/Internal/EditorForm.cs @@ -9,11 +9,15 @@ using PckStudio.Interfaces; namespace PckStudio.Internal { - public abstract class EditorForm : MetroForm where T : class + public class EditorForm : MetroForm where T : class { protected T EditorValue; private readonly ISaveContext SaveContext; + private EditorForm() + { + } + protected EditorForm(T value, ISaveContext saveContext) { _ = value ?? throw new ArgumentNullException(nameof(value));