mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
16 lines
226 B
C#
16 lines
226 B
C#
namespace SanAndreasUnity.Utilities
|
|
{
|
|
public class Ref<T>
|
|
{
|
|
public T value;
|
|
|
|
public Ref()
|
|
{
|
|
}
|
|
|
|
public Ref(T value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
}
|
|
}
|