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