##### Zombie Room Counter ##### from __future__ import division import pygame import gamebox from zombiegrid import * ##### Set room size (must be first!) ##### make_room(3,4) ##### Add your code for having the zombie move below: ##### move_down() # example: you can move up/down/left/right if look_left(): # you can see if there is a door move_left() # you can decide to do things based on the result announce(3) # you can announce things move_up() move_up() # you blow up if you leave the board ##### always leave this at the end ##### run_algorithm()