Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Pair.cs
Go to the documentation of this file.
2
3internal struct Pair<T, U>
4{
5 internal T _first;
6
7 internal U _second;
8
9 public T First
10 {
11 get
12 {
13 return _first;
14 }
15 set
16 {
17 _first = value;
18 }
19 }
20
21 public U Second
22 {
23 get
24 {
25 return _second;
26 }
27 set
28 {
29 _second = value;
30 }
31 }
32
33 public Pair(T first, U second)
34 {
35 _first = first;
37 }
38}
Pair(T first, U second)
Definition Pair.cs:33