It works!!!!!!

This commit is contained in:
2026-01-30 17:59:16 +01:00
parent d262924e20
commit 6fbb53ccd1
7 changed files with 830 additions and 0 deletions

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

@@ -0,0 +1,43 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"-std=c++26",
"-pedantic-errors",
"-Wall",
"-Weffc++",
"-Wextra",
"-Wconversion",
"-Wsign-conversion",
"-Werror",
"${fileDirname}/**.cpp",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-lraylib",
"-lGL",
"-lm",
"-lpthread",
"-ldl",
"-lrt",
"-lX11"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}