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.
12 lines
143 B
C#
12 lines
143 B
C#
using System;
|
|
|
|
namespace Gwen
|
|
{
|
|
public struct HSV
|
|
{
|
|
public float h;
|
|
public float s;
|
|
public float v;
|
|
}
|
|
}
|