diff options
| author | dawidg81 <dawidgorski.m@gmail.com> | 2026-02-09 10:18:39 +0100 |
|---|---|---|
| committer | dawidg81 <dawidgorski.m@gmail.com> | 2026-02-09 10:18:39 +0100 |
| commit | f0b92d9a5a345112bc588fecbf818920da7ad418 (patch) | |
| tree | 34d31f84d3a3439993dc0eccaeea0f5349443b53 /src/main.cpp | |
| parent | 8183a33ad2893b84dacf41c38a1b79101731814e (diff) | |
Small readability conventions
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; + } |
