mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 12:16:29 +00:00
EditorForm - Remove abstract from class declaration
This commit is contained in:
@@ -9,11 +9,15 @@ using PckStudio.Interfaces;
|
||||
|
||||
namespace PckStudio.Internal
|
||||
{
|
||||
public abstract class EditorForm<T> : MetroForm where T : class
|
||||
public class EditorForm<T> : MetroForm where T : class
|
||||
{
|
||||
protected T EditorValue;
|
||||
private readonly ISaveContext<T> SaveContext;
|
||||
|
||||
private EditorForm()
|
||||
{
|
||||
}
|
||||
|
||||
protected EditorForm(T value, ISaveContext<T> saveContext)
|
||||
{
|
||||
_ = value ?? throw new ArgumentNullException(nameof(value));
|
||||
|
||||
Reference in New Issue
Block a user