Fix mistake

This commit is contained in:
Stone-Red-Code
2021-08-14 21:33:24 +02:00
parent f05b5783ba
commit e89b2981e7
172 changed files with 751 additions and 2299 deletions
@@ -1,23 +0,0 @@
using System;
namespace DesktopMagicPluginAPI.Inputs
{
/// <summary>
/// The element base class
/// </summary>
public abstract class Element
{
/// <summary>
/// Occurs when the value has been changed
/// </summary>
public event Action OnValueChanged;
/// <summary>
/// Triggers the <see cref="OnValueChanged"/> event
/// </summary>
protected void ValueChanged()
{
OnValueChanged?.Invoke();
}
}
}