mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 23:39:29 +02:00
Plugin class name can now have any name.
This commit is contained in:
@@ -6,7 +6,7 @@ using System.Drawing;
|
||||
|
||||
namespace DesktopMagicPlugin.Test
|
||||
{
|
||||
public class PluginScript : Plugin
|
||||
public class KEK : Plugin
|
||||
{
|
||||
[Element]
|
||||
private Label heading = new Label("Heading", true);
|
||||
@@ -25,11 +25,11 @@ namespace DesktopMagicPlugin.Test
|
||||
|
||||
public override int UpdateInterval { get; set; }
|
||||
|
||||
public PluginScript()
|
||||
public KEK()
|
||||
{
|
||||
slider.OnValueChanged += Slider_OnValueChanged;
|
||||
textBox.OnValueChanged += TextBox_OnValueChanged;
|
||||
button.OnClick += Button_OnClick; ;
|
||||
button.OnClick += Button_OnClick;
|
||||
}
|
||||
|
||||
private void Button_OnClick()
|
||||
|
||||
Reference in New Issue
Block a user