Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LineInfo.cs
Go to the documentation of this file.
1namespace System.Xml;
2
3internal struct LineInfo
4{
5 internal int lineNo;
6
7 internal int linePos;
8
9 public LineInfo(int lineNo, int linePos)
10 {
13 }
14
15 public void Set(int lineNo, int linePos)
16 {
19 }
20}
LineInfo(int lineNo, int linePos)
Definition LineInfo.cs:9
void Set(int lineNo, int linePos)
Definition LineInfo.cs:15