Complete the C++ program for your Game Loop for Tron and submit it to the Drop B
ID: 3559793 • Letter: C
Question
Complete the C++ program for your Game Loop for Tron and submit it to the Drop Box. Remember, you are using blank or empty calling functions, as in:
bool getUserInput() {
}
void makeMove(char input) {
}
while(!gameOver) {
key = getUserInput();
makeMove(key);
....
....
....
}
This is just an example. You need to come up with your own game loop and dummy functions.
bool getUserInput() {
}
void makeMove(char input) {
}
while(!gameOver) {
key = getUserInput();
makeMove(key);
....
....
....
}