Add and update Rock Paper Scissors app, revise the Calculator page, and allow for testing
This commit is contained in:
parent
91c4417d89
commit
d069c9a4d3
5 changed files with 14 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -23,3 +23,6 @@ pnpm-debug.log*
|
||||||
# ide files
|
# ide files
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
|
# testing space
|
||||||
|
/src/pages/testing.astro
|
||||||
|
|
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -4,3 +4,6 @@
|
||||||
[submodule "src/pages/calc"]
|
[submodule "src/pages/calc"]
|
||||||
path = src/pages/calc
|
path = src/pages/calc
|
||||||
url = https://git.ixvd.net/logically.cc/calc
|
url = https://git.ixvd.net/logically.cc/calc
|
||||||
|
[submodule "src/pages/rockpaperscissors"]
|
||||||
|
path = src/pages/rockpaperscissors
|
||||||
|
url = https://git.ixvd.net/logically.cc/rockpaperscissors
|
||||||
|
|
|
@ -13,4 +13,6 @@ layout: ../../layouts/primary.astro
|
||||||
- Uses text field as well as buttons
|
- Uses text field as well as buttons
|
||||||
- Uses "safe eval"
|
- Uses "safe eval"
|
||||||
|
|
||||||
|
*Version 1.0.0*
|
||||||
|
|
||||||
[Open App](/calc)
|
[Open App](/calc)
|
|
@ -8,8 +8,10 @@ layout: ../../layouts/primary.astro
|
||||||
# Rock/Paper/Scissors
|
# Rock/Paper/Scissors
|
||||||
```For when you have no hands but you have thumbs```
|
```For when you have no hands but you have thumbs```
|
||||||
|
|
||||||
## Planned Features
|
## Features
|
||||||
- Single-player mode
|
|
||||||
- AI mode (totally predicts your next move)
|
- AI mode (totally predicts your next move)
|
||||||
- Score-keeping
|
- Score-keeping
|
||||||
- Custom additions
|
|
||||||
|
*Version 1.0.0*
|
||||||
|
|
||||||
|
[Open App](/rockpaperscissors)
|
1
src/pages/rockpaperscissors
Submodule
1
src/pages/rockpaperscissors
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 53668dcbb4d3a854f0e99584b392f8c292ec9dbd
|
Loading…
Reference in a new issue