Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
UIEvent.cs
Go to the documentation of this file.
1namespace Terraria.UI;
2
3public class UIEvent
4{
5 public readonly UIElement Target;
6
7 public UIEvent(UIElement target)
8 {
9 Target = target;
10 }
11}
readonly UIElement Target
Definition UIEvent.cs:5
UIEvent(UIElement target)
Definition UIEvent.cs:7