Plugin class name can now have any name.

This commit is contained in:
Stone-Red-Code
2021-08-16 18:19:42 +02:00
parent 1e57ec1b6a
commit d46976fec8
92 changed files with 109 additions and 76 deletions
+3 -3
View File
@@ -3,17 +3,17 @@
namespace DesktopMagicPluginAPI.Inputs
{
/// <summary>
/// The element base class
/// The element base class.
/// </summary>
public abstract class Element
{
/// <summary>
/// Occurs when the value has been changed
/// Occurs when the value has been changed.
/// </summary>
public event Action OnValueChanged;
/// <summary>
/// Triggers the <see cref="OnValueChanged"/> event
/// Triggers the <see cref="OnValueChanged"/> event.
/// </summary>
protected void ValueChanged()
{