summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XTuple.cs
blob: a3abb4b946874a558d7fa09abbfa3236f26cc243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace XMainClient
{
	internal class XTuple<T1, T2>
	{
		public T1 Item1;

		public T2 Item2;

		public XTuple(T1 t1, T2 t2)
		{
			this.Item1 = t1;
			this.Item2 = t2;
		}

		public XTuple()
		{
		}
	}
}