Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
UIScrollWheelEvent.cs
Go to the documentation of this file.
2
3namespace Terraria.UI;
4
6{
7 public readonly int ScrollWheelValue;
8
9 public UIScrollWheelEvent(UIElement target, Vector2 mousePosition, int scrollWheelValue)
10 : base(target, mousePosition)
11 {
12 ScrollWheelValue = scrollWheelValue;
13 }
14}
UIScrollWheelEvent(UIElement target, Vector2 mousePosition, int scrollWheelValue)