mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 08:56:15 +02:00
14 lines
266 B
C#
14 lines
266 B
C#
using System.Drawing;
|
|
|
|
namespace DesktopMagicPluginAPI
|
|
{
|
|
public interface IPluginData
|
|
{
|
|
string Font { get; }
|
|
Color Color { get; }
|
|
Point WindowSize { get; }
|
|
Point WindowPosition { get; }
|
|
|
|
void UpdateWindow();
|
|
}
|
|
} |