Пустое окно

This commit is contained in:
2025-12-06 17:21:56 +03:00
commit 74ead297d5
7 changed files with 234 additions and 0 deletions

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Zig: Debug (lldb)",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-out/bin/Zivro",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "zig: build"
},
]
}