summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Tools/Info.cs
blob: 50e2d423a92dff6875ec7488f91f484a3c2541eb (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
28
29
30
31
32
33
34
35
36
37
38
39
40

public class Info<T0>
{
	public T0 arg0;

	public Info(T0 arg0)
	{
		this.arg0 = arg0;
	}
}
public class Info<T0, T1> : Info<T0>
{
	public T1 arg1;

	public Info(T0 arg0, T1 arg1)
		: base(arg0)
	{
		this.arg1 = arg1;
	}
}
public class Info<T0, T1, T2> : Info<T0, T1>
{
	public T2 arg2;

	public Info(T0 arg0, T1 arg1, T2 arg2)
		: base(arg0, arg1)
	{
		this.arg2 = arg2;
	}
}
public class Info<T0, T1, T2, T3> : Info<T0, T1, T2>
{
	public T3 arg3;

	public Info(T0 arg0, T1 arg1, T2 arg2, T3 arg3)
		: base(arg0, arg1, arg2)
	{
		this.arg3 = arg3;
	}
}