diff options
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ab3075e..21ceb01 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,9 +1,12 @@ +#include "Game.hpp" + #include <ctime> #include <iostream> -#include "Game.hpp" + using namespace std; int main(){ + Game game; game.inGame = false; int choice; @@ -42,4 +45,5 @@ int main(){ } return 0; + } |
