using CustomizePlus.Templates.Data;
using OtterGui.Classes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomizePlus.Templates.Events;
///
/// Triggered when something related to template editor happens
///
public class TemplateEditorEvent() : EventWrapper(nameof(TemplateEditorEvent))
{
public enum Type
{
///
/// Called when something requests editor to be enabled.
///
EditorEnableRequested,
///
/// Called when something requests editor to be enabled. Stage 2 - logic after tab has been switched.
///
EditorEnableRequestedStage2
}
public enum Priority
{
MainWindow = -1,
TemplatePanel
}
}