From 91cc485201ca1159fc21bd54ad9eb0341f0a69c2 Mon Sep 17 00:00:00 2001 From: chrisf Date: Tue, 10 Jul 2007 07:38:33 +0000 Subject: [PATCH] git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1161 993157c7-ee19-0410-b2c4-bb4e9862e678 --- BluntDx/BluntDx.vcproj.ODD-SOCKS.chrisf.user | 65 ++++++++++++++++++++ OpenRa.FileFormats/OpenRa.FileFormats.csproj | 1 + OpenRa.FileFormats/Tuple.cs | 40 ++++++++++++ 3 files changed, 106 insertions(+) create mode 100644 BluntDx/BluntDx.vcproj.ODD-SOCKS.chrisf.user create mode 100644 OpenRa.FileFormats/Tuple.cs diff --git a/BluntDx/BluntDx.vcproj.ODD-SOCKS.chrisf.user b/BluntDx/BluntDx.vcproj.ODD-SOCKS.chrisf.user new file mode 100644 index 0000000000..4285de7e4d --- /dev/null +++ b/BluntDx/BluntDx.vcproj.ODD-SOCKS.chrisf.user @@ -0,0 +1,65 @@ + + + + + + + + + + + diff --git a/OpenRa.FileFormats/OpenRa.FileFormats.csproj b/OpenRa.FileFormats/OpenRa.FileFormats.csproj index 1ff218791b..d3b973391c 100644 --- a/OpenRa.FileFormats/OpenRa.FileFormats.csproj +++ b/OpenRa.FileFormats/OpenRa.FileFormats.csproj @@ -54,6 +54,7 @@ + diff --git a/OpenRa.FileFormats/Tuple.cs b/OpenRa.FileFormats/Tuple.cs new file mode 100644 index 0000000000..f20cd086bd --- /dev/null +++ b/OpenRa.FileFormats/Tuple.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenRa.FileFormats +{ + public class Tuple + { + public A a; + + public Tuple(A a) { this.a = a; } + } + + public class Tuple + { + public A a; + public B b; + + public Tuple(A a, B b) { this.a = a; this.b = b; } + } + + public class Tuple + { + public A a; + public B b; + public C c; + + public Tuple(A a, B b, C c) { this.a = a; this.b = b; this.c = c; } + } + + public class Tuple + { + public A a; + public B b; + public C c; + public D d; + + public Tuple(A a, B b, C c, D d) { this.a = a; this.b = b; this.c = c; this.d = d; } + } +}