Converted server to Typescript

This commit is contained in:
Thomas
2021-01-28 17:49:49 +01:00
parent 1149f17b20
commit cc6a474a88
29 changed files with 655 additions and 1830 deletions

15
server/dist/models/GameSettings.js vendored Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GameSettings = void 0;
class GameSettings {
constructor() {
this.playerSize = 10;
this.playerSpeed = 5;
this.playerTurnSpeed = 10;
this.wallSize = 8;
this.wallUpdate = 3;
this.arenaSize = 1000;
}
}
exports.GameSettings = GameSettings;
//# sourceMappingURL=GameSettings.js.map