A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
 
 
 

12 lines
245 B

#!/usr/bin/env python
import os
if os.path.exists("project.godot"):
# Update
os.system("git pull")
os.system("godot")
else:
# Initial download
os.system("git clone --depth 1 https://github.com/CosineGaming/nv-moba .")
os.system("godot")