Skip to content

Commit

Permalink
Merge pull request #1 from michael-jaquier/feat/bevy-fun
Browse files Browse the repository at this point in the history
Feat/bevy fun
  • Loading branch information
michael-jaquier authored May 8, 2024
2 parents 80cb726 + 2b25043 commit 98aad8a
Show file tree
Hide file tree
Showing 20 changed files with 5,760 additions and 15 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"key": "space e",
"command": "workbench.action.tasks.runTask",
"args": "cargo run",
"when": "editorTextFocus"
64 changes: 64 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
// 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 unit tests in library 'bevy_github_ci_template'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=bevy_github_ci_template"
],
"filter": {
"name": "bevy_github_ci_template",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'bevy_github_ci_template'",
"cargo": {
"args": [
"build",
"--bin=bevy_github_ci_template",
"--package=bevy_github_ci_template"
],
"filter": {
"name": "bevy_github_ci_template",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'bevy_github_ci_template'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=bevy_github_ci_template",
"--package=bevy_github_ci_template"
],
"filter": {
"name": "bevy_github_ci_template",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 98aad8a

Please sign in to comment.