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

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