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