summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/js/play.js
blob: daeffb5904da9bd1e38c646a9c4dc2d185d29eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Interface from './modules/interface';
import UIManager from './modules/ui/uiManager';
import Networker from './modules/networking/networker';

const SERVERURL = 'https://dsa-core:5000/chatHub';

let iface = new Interface();
let uiMan = new UIManager(iface);
uiMan.initPlay();
// Create Network Manager as well

// TODO: Implement login from the play page