diff --git a/client/.vscode/tasks.json b/client/.vscode/tasks.json
new file mode 100644
index 0000000..a1028eb
--- /dev/null
+++ b/client/.vscode/tasks.json
@@ -0,0 +1,11 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "0.1.0",
+ "command": "tsc",
+ "isShellCommand": true,
+ "args": ["-w", "-p", "."],
+ //"showOutput": "silent",
+ "isBackground": true,
+ "problemMatcher": "$tsc-watch"
+}
\ No newline at end of file
diff --git a/client/game.js b/client/game.js
new file mode 100644
index 0000000..41c6577
--- /dev/null
+++ b/client/game.js
@@ -0,0 +1,7 @@
+var FileCache = (function () {
+ function FileCache() {
+ }
+ FileCache.Initialize = function () {
+ };
+ return FileCache;
+}());
diff --git a/client/index.html b/client/index.html
index f4e5b35..8153a43 100644
--- a/client/index.html
+++ b/client/index.html
@@ -3,7 +3,7 @@
CircleScape
-
+