/******************************************************************** File: interface.h Author: Dana Vrajitoru Description: Bringing the maze together. Project: A sprite moving through a maze application. Last updated: February 10, 2011. ********************************************************************/ #ifndef INTERFACE_H #define INTERFACE_H #include "bus.h" // Draws all the objects in the scene void draw(); void key(unsigned char key, int x, int y); void spkey(int key, int x, int y); // Moves the bus in the given direction. If the move ends up in a // wall, the bus is turned back. void move_bus(Direction where); // Initializes all the objects with their initial positions. void init_obj(); // Application parameters void myinit(); #endif