
3ds_underwater
By: a guest on
Jun 2nd, 2013 | syntax:
Python | size: 0.67 KB | hits: 34 | expires: Never
#-------------------------------------------------------------------------------
# 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()