Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Ref.cs
Go to the documentation of this file.
1namespace Terraria;
2
3public class Ref<T>
4{
5 public T Value;
6
7 public Ref()
8 {
9 }
10
11 public Ref(T value)
12 {
13 Value = value;
14 }
15}
Ref(T value)
Definition Ref.cs:11
T Value
Definition Ref.cs:5
Ref()
Definition Ref.cs:7