using System;
namespace RGB.NET.Core;
///
/// Contains a list of different shapes used to define the layout of a LED.
///
[Serializable]
public enum Shape
{
///
/// A custom shape defined by vector-data.
///
Custom = 0,
///
/// A simple rectangle.
///
Rectangle = 1,
///
/// A simple circle.
///
Circle = 2,
}