Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
HandledEventArgs.cs
Go to the documentation of this file.
2
4{
5 public bool Handled { get; set; }
6
8 : this(defaultHandledValue: false)
9 {
10 }
11
12 public HandledEventArgs(bool defaultHandledValue)
13 {
14 Handled = defaultHandledValue;
15 }
16}
HandledEventArgs(bool defaultHandledValue)