Gered
10e057953e
Contains changes from "gwen-dotnet" removing dependancies on Windows, which ultimately means certain features (e.g. file load/save dialogs) do not work. Those classes still exist, but the code has been commented out.
11 lines
150 B
C#
11 lines
150 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace Gwen.Control
|
|
{
|
|
public interface IColorPicker
|
|
{
|
|
Color SelectedColor { get; }
|
|
}
|
|
}
|