Refactor step 1

This commit is contained in:
Stone_Red
2023-11-19 16:19:07 +01:00
parent 3eae8bcdfc
commit 74bf7c2fb8
30 changed files with 595 additions and 412 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
using DesktopMagicPluginAPI;
using DesktopMagicPluginAPI.Inputs;
using DesktopMagicPluginAPI.Settings;
using System;
using System.Collections.Generic;
@@ -14,10 +15,10 @@ public class GifPlugin : Plugin
{
private const string SaveFilePath = "gifPath.txt";
[Element("Gif path:")]
[Setting("Gif path:")]
private readonly TextBox input = new TextBox("");
[Element]
[Setting]
private readonly Label info = new Label("");
private readonly List<Bitmap> bitmaps = [];