Initial commit

This commit is contained in:
Stone-Red-Code
2021-05-23 12:43:35 +02:00
commit ee7d39b13f
399 changed files with 25501 additions and 0 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();
}
}