Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ObjectHolderListEnumerator.cs
Go to the documentation of this file.
2
3internal sealed class ObjectHolderListEnumerator
4{
5 private readonly bool _isFixupEnumerator;
6
7 private readonly ObjectHolderList _list;
8
9 private readonly int _startingVersion;
10
11 private int _currPos;
12
14
22
23 internal bool MoveNext()
24 {
26 {
28 {
29 }
30 return _currPos != _list.Count;
31 }
32 _currPos++;
33 return _currPos != _list.Count;
34 }
35}
ObjectHolderListEnumerator(ObjectHolderList list, bool isFixupEnumerator)