mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
18 lines
517 B
C#
18 lines
517 B
C#
namespace CUE.NET.Devices.Keyboard.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains a 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
|
|
}
|
|
}
|