From 6f162dcf90a6aa671eb351dc25cb01e2d9cbd3cb Mon Sep 17 00:00:00 2001 From: TrueKuehli Date: Mon, 1 Oct 2018 18:10:37 +0200 Subject: A lot of changes I shoud have written a better commit, I know! --- WebInterface/NodeJSServer/src/play-module.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 WebInterface/NodeJSServer/src/play-module.js (limited to 'WebInterface/NodeJSServer/src/play-module.js') 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; + } +} -- cgit v1.2.3-54-g00ecf