// File: constants.h

// CSCI 1300
// Spring 2004
//
// Karl Winklmann

#ifndef CONSTANTS
#define CONSTANTS

using namespace std;

const int SIGHT_DISTANCE = 20; // for traffic lights and obstacles to be 'seen'

const int CAR_SIZE = 6;         
const int OBSTACLE_SIZE = 18;         
const int LIGHT_RADIUS = 5;         

#endif
