feat: playing notes in keypress #5

Merged
e1lama merged 7 commits from feature/gui-3 into master 2023-06-18 09:54:03 +00:00
4 changed files with 131 additions and 15 deletions
Showing only changes of commit 0eb203f9f4 - Show all commits

3
.gitignore vendored
View File

@@ -1,4 +1,5 @@
/bin
.DS_Store
/Debug/
*.wav
*.wav
*.dSYM

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"
}