-Forgot to add TestClient.java. You'll need this to actually run the server.


git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4146 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/971CV/src/org/frc971/TestClient.java b/971CV/src/org/frc971/TestClient.java
new file mode 100644
index 0000000..fed5c27
--- /dev/null
+++ b/971CV/src/org/frc971/TestClient.java
@@ -0,0 +1,19 @@
+/**
+ * 
+ */
+package org.frc971;
+
+/**
+ * @author daniel
+ *
+ */
+public class TestClient extends Thread {
+	public TestClient() {
+		super("Test Client");
+		start();
+	}
+	public void run() {
+		String[] args = {};
+		VisionTuner.main(args);
+	}
+}