A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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")