1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

23 lines
436 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 simple rectangle.
/// </summary>
Rectangle = 0,
/// <summary>
/// A simple circle.
/// </summary>
Circle = 1
}
}