-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.hpp
19 lines (16 loc) · 933 Bytes
/
Constants.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/******************************************************************************
** Program name: Constants.hpp
** Author: Derth Adams
** Date: June 11, 2019
** Description: Contains the global constants used in the program.
*******************************************************************************/
#ifndef INC_162_FINAL_PROJECT_CONSTANTS_HPP
#define INC_162_FINAL_PROJECT_CONSTANTS_HPP
#include <string>
const int START_HOUR = 19; // The hour (in military time) the game starts
const int TIME_LIMIT = 120; // How many minutes before the stores close
const int SHORT_TIME_STEP = 5; // How many minutes each move takes (short)
const int LONG_TIME_STEP = 20; // How many minutes each move takes (long)
const int CAR_COST = 10; // Amount of Euros taking a car costs
const int STARTING_EUROS = 200; // Amount of money in Euros you start with
#endif //INC_162_FINAL_PROJECT_CONSTANTS_HPP