From 5aad9ea97a99493cbf2e9bf9935dc5f424cc7a7b Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Tue, 27 May 2025 21:51:20 +0200 Subject: [PATCH] EditorForm - Remove abstract from class declaration --- PCK-Studio/Internal/EditorForm.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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));