Files
SoftwareRenderer/switch.sh
2026-04-03 12:34:06 +02:00

10 lines
162 B
Bash
Executable File

#!/usr/bin/env bash
if [ -e "mathTest.cpp" ]; then
mv main.cpp oldMain.cpp
mv mathTest.cpp main.cpp
else
mv main.cpp mathTest.cpp
mv oldMain.cpp main.cpp
fi