From 51af18f2af806f0d099b4c8b18f4ff3e4e5750de Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 1 Aug 2021 03:04:33 +0530 Subject: Update README and change gamemode names --- README.md | 2 ++ src/components/GamemodeChooser.js | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c6da899..1aa0680 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Minimalistic Tic Tac Toe game, written in React. For some reason, I've made the code as functional as I can make it +This game is hosted (here)[https://mikunonaka-tic-tac-toe.herokuapp.com/]. + ## Licence Licenced under the GNU General Public Licence diff --git a/src/components/GamemodeChooser.js b/src/components/GamemodeChooser.js index 6b2e985..15728d2 100644 --- a/src/components/GamemodeChooser.js +++ b/src/components/GamemodeChooser.js @@ -30,14 +30,14 @@ const GamemodeChooser = (props) => { props.setGameStarted(true); props.setMultiplayer(false); }}> - SINGLE PLAYER + LOCAL
{ setShowMPMenu(true); props.setMultiplayer(true); }}> - MULTIPLAYER (beta) + ONLINE
} -- cgit v1.2.3