feat: playing notes in keypress (#5)

closes #3

Co-authored-by: HiveBeats <e1lama@protonmail.com>
Reviewed-on: #5
This commit is contained in:
2023-06-18 12:54:03 +03:00
parent 320a3cc8e0
commit 97c743100a
4 changed files with 329 additions and 18 deletions

View File

@@ -4,5 +4,6 @@
],
"files.associations": {
"algorithm": "c"
}
},
"FSharp.suggestGitignore": false,
}

32
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang сборка активного файла",
"command": "/usr/bin/clang",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"${file}",
"${fileDirname}/parser.c",
"-lm",
"-lraylib",
"-o",
"${fileDirname}/bin/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Задача создана отладчиком."
}
],
"version": "2.0.0"
}