Shuvit game master repo. http://shuvit.org
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.

main.py 332B

12345678910111213141516171819202122
  1. #main game loop
  2. import Startup
  3. import Settings
  4. #import inputs
  5. def main(cont):
  6. if 'minited' not in cont.owner:
  7. cont.owner['minited'] = True
  8. Startup.main(cont)
  9. Settings.readSettings()
  10. #Settings.loadlevel(cont)
  11. #***********************************
  12. #main loop
  13. #***********************************
  14. #inputs.main(cont)