Code commit

This commit is contained in:
RisaDev
2024-01-06 01:21:41 +03:00
parent a7d7297c59
commit a486dd2c96
90 changed files with 11576 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using CustomizePlus.Armatures.Data;
using OtterGui.Classes;
using System;
namespace CustomizePlus.Armatures.Events;
/// <summary>
/// Triggered when armature is changed
/// </summary>
public sealed class ArmatureChanged() : EventWrapper<ArmatureChanged.Type, Armature?, object?, ArmatureChanged.Priority>(nameof(ArmatureChanged))
{
public enum Type
{
//Created,
Deleted
}
public enum Priority
{
ProfileManager
}
public enum DeletionReason
{
Gone,
NoActiveProfiles,
ProfileManagerEvent,
TemplateEditorEvent
}
}