summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XTuple.3.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XTuple.3.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XTuple.3.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/XTuple.3.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XTuple.3.cs b/Client/Assets/Scripts/XMainClient/XTuple.3.cs
new file mode 100644
index 00000000..d201cc57
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/XTuple.3.cs
@@ -0,0 +1,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()
+ {
+ }
+ }
+}