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;
|
|||
|
}
|
|||
|
}
|