mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
15 lines
229 B
C#
15 lines
229 B
C#
namespace QSB.Utility
|
|
{
|
|
public class Tuple<T1, T2>
|
|
{
|
|
public T1 First { get; private set; }
|
|
public T2 Second { get; private set; }
|
|
|
|
internal Tuple(T1 first, T2 second)
|
|
{
|
|
First = first;
|
|
Second = second;
|
|
}
|
|
}
|
|
}
|