diff --git a/clientapp/src/Game.js b/clientapp/src/Game.js
index 9c0fa0b..82fc622 100644
--- a/clientapp/src/Game.js
+++ b/clientapp/src/Game.js
@@ -17,6 +17,13 @@ class Game {
this._winningConditions =
this.winningCondition.map(x => x.join(","));
}
+
+
+ makeMove() {
+
+ }
+
+
changeTurn() {
this.currentTurn = this.currentTurn == this.players[0].sign ? this.players[1].sign : this.players[0].sign;
}
diff --git a/clientapp/src/Player.js b/clientapp/src/Player.js
index d1b2ef5..eebd589 100644
--- a/clientapp/src/Player.js
+++ b/clientapp/src/Player.js
@@ -1,5 +1,6 @@
class Player {
- constructor(sign) {
+ constructor(sign, id) {
+ this.id = id;
this.sign = sign;
this.clicks = [];
this.score = 0;
diff --git a/clientapp/src/components/GameUI.vue b/clientapp/src/components/GameUI.vue
index 53da302..6172f2d 100644
--- a/clientapp/src/components/GameUI.vue
+++ b/clientapp/src/components/GameUI.vue
@@ -16,15 +16,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -32,10 +32,11 @@