summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-02-09 10:18:39 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-02-09 10:18:39 +0100
commitf0b92d9a5a345112bc588fecbf818920da7ad418 (patch)
tree34d31f84d3a3439993dc0eccaeea0f5349443b53 /src/main.cpp
parent8183a33ad2893b84dacf41c38a1b79101731814e (diff)
Small readability conventions
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
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;
+
}