diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XTuple.2.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XTuple.2.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XTuple.2.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XTuple.2.cs b/Client/Assets/Scripts/XMainClient/XTuple.2.cs new file mode 100644 index 00000000..b395deae --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XTuple.2.cs @@ -0,0 +1,24 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XTuple<T1, T2, T3>
+ {
+ public T1 Item1;
+
+ public T2 Item2;
+
+ public T3 Item3;
+
+ public XTuple(T1 t1, T2 t2, T3 t3)
+ {
+ this.Item1 = t1;
+ this.Item2 = t2;
+ this.Item3 = t3;
+ }
+
+ public XTuple()
+ {
+ }
+ }
+}
|