Don't like ads? PRO users don't see any ads ;-)

Guest

3ds_underwater

By: waterapple on Jun 2nd, 2013  |  syntax: Python  |  size: 0.78 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #-------------------------------------------------------------------------------
  2. # Name:        3ds_under_the_sea
  3. # Purpose:      Emulate the functionality of the 3ds games console underwater.
  4. #
  5. # Author:      new
  6. #
  7. # Created:     02/06/2013
  8. # Copyright:   (c) new 2013
  9. # Licence:     <your licence>
  10. #-------------------------------------------------------------------------------
  11. #!/usr/bin/env python
  12.  
  13.  
  14. MARIO_WORLD = "Super mario world 3ds"
  15. HALO_5 = "Ported version of Halo 5: Cortanna has boobies that shoot lasers"
  16. DONKEY_KONG = "Donkey kong 3ds"
  17.  
  18.  
  19. def emulate(game):
  20.     while True:
  21.         # Instruction-Identical emulation for water damage
  22.         pass
  23.  
  24.  
  25.  
  26. def main():
  27.     print "loading emulator..."
  28.     emulate(MARIO_WORLD)
  29.  
  30. if __name__ == '__main__':
  31.     main()