Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #-------------------------------------------------------------------------------
- # Name: 3ds_under_the_sea
- # Purpose: Emulate the functionality of the 3ds games console underwater.
- #
- # Author: new
- #
- # Created: 02/06/2013
- # Copyright: (c) new 2013
- # Licence: <your licence>
- #-------------------------------------------------------------------------------
- #!/usr/bin/env python
- MARIO_WORLD = "Super mario world 3ds"
- def emulate(game):
- while true:
- # Instruction-Identical emulation for water damage
- pass
- def main():
- print "loading emulator..."
- emulate(MARIO_WORLD)
- if __name__ == '__main__':
- main()
Advertisement
Add Comment
Please, Sign In to add comment