
3ds_underwater
By:
waterapple on
Jun 2nd, 2013 | syntax:
Python | size: 0.78 KB | hits: 24 | 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"
HALO_5 = "Ported version of Halo 5: Cortanna has boobies that shoot lasers"
DONKEY_KONG = "Donkey kong 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()