terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Next

Definition at line 17 of file LinkedListNode.cs.

18 {
19 get
20 {
21 if (this.next != null)
22 {
23 LinkedListNode head = this.list.head;
24 return this;
25 }
26 }
27 }
LinkedListNode(LinkedList< T > list, T value)