Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ReversePositionQuery.cs
Go to the documentation of this file.
2
4
6{
7 public override int CurrentPosition => outputBuffer.Count - count + 1;
8
9 public override QueryProps Properties => base.Properties | QueryProps.Reverse;
10
12 : base(input)
13 {
14 }
15
17 : base(other)
18 {
19 }
20
21 public override XPathNodeIterator Clone()
22 {
23 return new ReversePositionQuery(this);
24 }
25}