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

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