Guest User

3ds_underwater

a guest
Jun 2nd, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.67 KB | None | 0 0
  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.  
  16. def emulate(game):
  17.     while true:
  18.         # Instruction-Identical emulation for water damage
  19.         pass
  20.  
  21.  
  22.  
  23. def main():
  24.     print "loading emulator..."
  25.     emulate(MARIO_WORLD)
  26.  
  27. if __name__ == '__main__':
  28.     main()
Advertisement
Add Comment
Please, Sign In to add comment