Ajout d'un fichier pour lancer le jeu facilement #13

Merged
CoCo_Sol merged 2 commits from launcher into main 2024-01-07 09:23:21 +00:00

6
launch.py Normal file
View file

@ -0,0 +1,6 @@
import subprocess as sp
import os
folder_path = __file__.replace("\\", "/")[:-10]
os.chdir(folder_path)
sp.call(f'python "{folder_path}/src/main.py"')