unhide files

This commit is contained in:
Nikita Edel 2026-03-10 00:12:26 +01:00
parent 0047a442a3
commit c6ab0e1177
3 changed files with 13 additions and 1 deletions

2
.gitignore vendored
View file

@ -29,7 +29,7 @@ meson-logs/
*.out
*.d
compile_commands.json
.clangd
# ----- Scratch / legacy -----

6
debug.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
CC=clang CXX=clang++ meson compile -C build && \
cd build/Minecraft.Client/ && \
gdb -tui ./Minecraft.Client && \
cd ../..

6
run.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
CC=clang CXX=clang++ meson compile -C build && \
cd build/Minecraft.Client/ && \
./Minecraft.Client && \
cd ../..