Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Marker.cs
Go to the documentation of this file.
2
4
5[DebuggerDisplay("{DebuggerDisplay,nq}")]
6internal readonly struct Marker
7{
8 public int Count { get; }
9
10 public int Index { get; }
11
12 private string DebuggerDisplay => $"{"Index"}: {Index}, {"Count"}: {Count}";
13
14 public Marker(int count, int index)
15 {
16 Count = count;
17 Index = index;
18 }
19}
Marker(int count, int index)
Definition Marker.cs:14