This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gwen-dotnet/Gwen/Control/IColorPicker.cs

11 lines
152 B
C#

using System;
//using System.Drawing;
namespace Gwen.Control
{
public interface IColorPicker
{
Color SelectedColor { get; }
}
}