1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00
CUE.NET/Devices/Keyboard/Enums/BrushCalculationMode.cs
2016-09-10 18:06:07 +02:00

18 lines
515 B
C#

namespace CUE.NET.Devices.Keyboard.Enums
{
/// <summary>
/// Contains list of all brush calculation modes.
/// </summary>
public enum BrushCalculationMode
{
/// <summary>
/// The calculation rectangle for brushes will be the rectangle around the ledgroup the brush is applied to.
/// </summary>
Relative,
/// <summary>
/// The calculation rectangle for brushes will always be the whole keyboard.
/// </summary>
Absolute
}
}