#ifndef PROJ2_H #define PROJ2_H const unsigned int MaxCars=9 ; const unsigned int MaxRows=50 ; const unsigned int MaxCols=20 ; const unsigned int InitialFuelLevel=70 ; class Position { public : unsigned int row ; unsigned int col ; } ; enum RaceStatus { WAITING, // Race not yet started STARTED, // Started, no one has won FINISHED, // Race finished with a winner STALEMATE // All cars have run out of fuel } ; #endif