Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
A fully functioning puzzle game.
Still has major flaws, like:
 - lack any sort of tutorial or explanation,
 - only acknowledges the player's completion by closing
  - and more

  but it can be considered a bare functioning minimum for version 1.0.0
  • Loading branch information
clonedcherry committed Jun 20, 2021
0 parents commit ea9bbe6
Show file tree
Hide file tree
Showing 7 changed files with 2,783 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tower-of-hanoi'",
"cargo": {
"args": [
"build",
"--bin=tower-of-hanoi",
"--package=tower-of-hanoi"
],
"filter": {
"name": "tower-of-hanoi",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tower-of-hanoi'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tower-of-hanoi",
"--package=tower-of-hanoi"
],
"filter": {
"name": "tower-of-hanoi",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit ea9bbe6

Please sign in to comment.