summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/play-module.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/NodeJSServer/src/play-module.js')
-rw-r--r--WebInterface/NodeJSServer/src/play-module.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/WebInterface/NodeJSServer/src/play-module.js b/WebInterface/NodeJSServer/src/play-module.js
new file mode 100644
index 0000000..3781329
--- /dev/null
+++ b/WebInterface/NodeJSServer/src/play-module.js
@@ -0,0 +1,15 @@
+
+
+/**
+ * Handles ingame networking;
+ */
+export default class GameClient {
+ /**
+ * Defines basic attributes
+ * @param {HubConnection} connection Already established connection to the
+ * server
+ */
+ constructor(connection) {
+ this.connection = connection;
+ }
+}