mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
28 lines
554 B
C#
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,
|
|
}
|
|
}
|