1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

28 lines
554 B
C#

using System;
using RGB.NET.Core.Layout;
namespace RGB.NET.Core
{
/// <summary>
/// Contains a list of different shapes used by <see cref="DeviceLayout"/>.
/// </summary>
[Serializable]
public enum Shape
{
/// <summary>
/// A custom shape defined by vector-data.
/// </summary>
Custom = 0,
/// <summary>
/// A simple rectangle.
/// </summary>
Rectangle = 1,
/// <summary>
/// A simple circle.
/// </summary>
Circle = 2,
}
}