mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
17 lines
327 B
C#
17 lines
327 B
C#
using System;
|
|
|
|
namespace RGB.NET.Core.Layout
|
|
{
|
|
/// <summary>
|
|
/// Contains a list of different shapes used by <see cref="DeviceLayout"/>.
|
|
/// </summary>
|
|
[Serializable]
|
|
public enum LayoutShape
|
|
{
|
|
/// <summary>
|
|
/// A simple rectangle.
|
|
/// </summary>
|
|
Rectangle = 0
|
|
}
|
|
}
|