Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IdRefNode.cs
Go to the documentation of this file.
1namespace System.Xml.Schema;
2
3internal sealed class IdRefNode
4{
5 internal string Id;
6
7 internal int LineNo;
8
9 internal int LinePos;
10
11 internal IdRefNode Next;
12
13 internal IdRefNode(IdRefNode next, string id, int lineNo, int linePos)
14 {
15 Id = id;
16 LineNo = lineNo;
17 LinePos = linePos;
18 Next = next;
19 }
20}
IdRefNode(IdRefNode next, string id, int lineNo, int linePos)
Definition IdRefNode.cs:13