Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaProviderAttribute.cs
Go to the documentation of this file.
2
5{
6 private readonly string _methodName;
7
8 private bool _any;
9
10 public string? MethodName => _methodName;
11
12 public bool IsAny
13 {
14 get
15 {
16 return _any;
17 }
18 set
19 {
20 _any = value;
21 }
22 }
23
28}