Help with Maze Game Assignment

Pages: 123
This has been reworked a bunch since this last post. There isn't actually a main in the final result.
Every C++ program requires a main() function.
main.cpp

1
2
3
4
5
6
7
8
9
10
11
12
#include "pacman.h"

int main ()
{   Game    game;

    //  srand(time(0));
    game.populateMaze();
    game.do_turns ();
    system ("pause");
    return 0;
}
Topic archived. No new replies allowed.
Pages: 123