feat: add format-code.bat

This commit is contained in:
2026-03-20 19:05:51 -03:00
parent 2553f5ab4b
commit 9ac9be7302
+10
View File
@@ -0,0 +1,10 @@
@echo off
echo formatting sources
for /r "src" %%f in (*.cpp *.h *.cs) do (
echo Formatting: %%f
clang-format -i "%%f"
)
echo done
pause