Skip to content

Commit

Permalink
fixed handle bonuses
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienPensart committed Jul 17, 2024
1 parent 3beb283 commit 9fbbc90
Show file tree
Hide file tree
Showing 9 changed files with 201 additions and 207 deletions.
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 'rtarot'",
"cargo": {
"args": [
"build",
"--bin=rtarot",
"--package=rtarot"
],
"filter": {
"name": "rtarot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rtarot'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rtarot",
"--package=rtarot"
],
"filter": {
"name": "rtarot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 9fbbc90

Please sign in to comment.