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