aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-01 03:04:33 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-01 03:04:33 +0530
commit51af18f2af806f0d099b4c8b18f4ff3e4e5750de (patch)
tree8f5d9a52c6f695cbce3a81151d14882f4971b7de
parent69d3376df1db5659bd413dbac2b563b2bd1850b6 (diff)
Update README and change gamemode names
-rw-r--r--README.md2
-rw-r--r--src/components/GamemodeChooser.js4
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
</div>
<div className={"GamemodeButton"} onClick={() => {
setShowMPMenu(true);
props.setMultiplayer(true);
}}>
- MULTIPLAYER (beta)
+ ONLINE
</div>
</>
}