// ReSharper disable UnusedMember.Global
namespace RGB.NET.Core;
///
/// Contains a list of all brush calculation modes.
///
public enum RenderMode
{
///
/// The calculation for will be the rectangle around the the is applied to.
///
Relative,
///
/// The calculation for will always be the whole .
///
Absolute
}