diff --git a/Dalamud/Game/Addon/Events/EventDataTypes/AddonMouseEventData.cs b/Dalamud/Game/Addon/Events/EventDataTypes/AddonMouseEventData.cs index 7dff37e95..27d56c287 100644 --- a/Dalamud/Game/Addon/Events/EventDataTypes/AddonMouseEventData.cs +++ b/Dalamud/Game/Addon/Events/EventDataTypes/AddonMouseEventData.cs @@ -27,52 +27,52 @@ public unsafe class AddonMouseEventData : AddonEventData } /// - /// Gets a value indicating whether the event was a Left Mouse Click + /// Gets a value indicating whether the event was a Left Mouse Click. /// public bool IsLeftClick => this.MouseData.ButtonId is 0; /// - /// Gets a value indicating whether the event was a Right Mouse Click + /// Gets a value indicating whether the event was a Right Mouse Click. /// public bool IsRightClick => this.MouseData.ButtonId is 1; /// - /// Gets a value indicating whether there are any modifiers set such as alt, control, shift, or dragging + /// Gets a value indicating whether there are any modifiers set such as alt, control, shift, or dragging. /// public bool IsNoModifier => this.MouseData.Modifier is 0; /// - /// Gets a value indicating whether alt was being held when this event triggered + /// Gets a value indicating whether alt was being held when this event triggered. /// public bool IsAltHeld => this.MouseData.Modifier.HasFlag(ModifierFlag.Alt); /// - /// Gets a value indicating whether control was being held when this event triggered + /// Gets a value indicating whether control was being held when this event triggered. /// public bool IsControlHeld => this.MouseData.Modifier.HasFlag(ModifierFlag.Ctrl); /// - /// Gets a value indicating whether shift was being held when this event triggered + /// Gets a value indicating whether shift was being held when this event triggered. /// public bool IsShiftHeld => this.MouseData.Modifier.HasFlag(ModifierFlag.Shift); /// - /// Gets a value indicating whether this event is a mouse drag or not + /// Gets a value indicating whether this event is a mouse drag or not. /// public bool IsDragging => this.MouseData.Modifier.HasFlag(ModifierFlag.Dragging); /// - /// Gets a value indicating whether the event was a scroll up + /// Gets a value indicating whether the event was a scroll up. /// public bool IsScrollUp => this.MouseData.WheelDirection is 1; /// - /// Gets a value indicating whether the event was a scroll down + /// Gets a value indicating whether the event was a scroll down. /// public bool IsScrollDown => this.MouseData.WheelDirection is -1; /// - /// Gets the position of the mouse when this event was triggered + /// Gets the position of the mouse when this event was triggered. /// public Vector2 Position => new(this.MouseData.PosX, this.MouseData.PosY);