// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedAutoPropertyAccessor.Global using System.Drawing; using CUE.NET.Devices.Keyboard.Enums; namespace CUE.NET.Brushes { /// /// Represents a single target of a brush render. /// public class BrushRenderTarget { #region Properties & Fields /// /// Gets the id of the target-key. /// public CorsairKeyboardKeyId Key { get; } /// /// Gets the point representing the position to render the target-key. /// public PointF Point { get; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The id of the target-key. /// The point representing the position to render the target-key. public BrushRenderTarget(CorsairKeyboardKeyId key, PointF point) { this.Point = point; this.Key = key; } #endregion } }