This commit is contained in:
Stone-Red-Code
2021-05-23 12:48:45 +02:00
parent ee7d39b13f
commit c2aaa9a91e
421 changed files with 1191 additions and 371 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Drawing;
namespace DesktopMagicPluginAPI
{
public interface IPluginData
{
string Font { get; }
Color Color { get; }
Point WindowSize { get; }
Point WindowPosition { get; }
void UpdateWindow();
}
}