ticTacToe initial commit

This commit is contained in:
Namonay
2024-02-20 18:52:14 +01:00
parent 4c3116c51f
commit 576dcb312a
6 changed files with 66 additions and 3 deletions

View File

@ -17,6 +17,7 @@ import TournamentPageView from "./views/tournament/TournamentPageView.js";
import TournamentsView from "./views/tournament/TournamentsListView.js";
import TournamentCreateView from "./views/tournament/TournamentCreateView.js";
import AuthenticationView from "./views/accounts/AuthenticationView.js";
import TicTacToeView from "./views/TicTacToeView.js";
let client = new Client(location.origin);
let lang = client.lang;
@ -88,6 +89,7 @@ const router = async(uri) => {
{ path: "/matchmaking", view: MatchMakingView },
{ path: "/games/offline", view: GameOfflineView },
{ path: "/games/:id", view: GameView },
{ path: "/tictactoe", view: TicTacToeView },
];
// Test each route for potential match