Revert "Fix mistake"

This reverts commit e89b2981e7.
This commit is contained in:
Stone-Red-Code
2021-08-14 21:42:06 +02:00
parent e89b2981e7
commit 1e57ec1b6a
172 changed files with 2328 additions and 780 deletions
+21
View File
@@ -2,13 +2,34 @@
namespace DesktopMagicPluginAPI
{
/// <summary>
/// Defines properties and methods that provide information about the main application.
/// </summary>
public interface IPluginData
{
/// <summary>
/// Gets the font of the main application.
/// </summary>
string Font { get; }
/// <summary>
/// Gets the color of the main application.
/// </summary>
Color Color { get; }
/// <summary>
/// Gets the window size of the main application.
/// </summary>
Point WindowSize { get; }
/// <summary>
/// Gets the window position of the main application.
/// </summary>
Point WindowPosition { get; }
/// <summary>
/// Updates the plugin window
/// </summary>
void UpdateWindow();
}
}