Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QilReference.cs
Go to the documentation of this file.
2
3namespace System.Xml.Xsl.Qil;
4
5internal class QilReference : QilNode
6{
7 private string _debugName;
8
9 public string DebugName
10 {
11 get
12 {
13 return _debugName;
14 }
16 set
17 {
18 if (value.Length > 1000)
19 {
20 value = value.Substring(0, 1000);
21 }
23 }
24 }
25
30}
QilReference(QilNodeType nodeType)