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

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

		public T2 Item2;

		public T3 Item3;

		public T4 Item4;

		public XTuple(T1 t1, T2 t2, T3 t3, T4 t4)
		{
			this.Item1 = t1;
			this.Item2 = t2;
			this.Item3 = t3;
			this.Item4 = t4;
		}

		public XTuple()
		{
		}
	}
}