aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.hpp
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-01-04 16:36:37 +0100
committersalaaad2 <arthurdurant263@gmail.com>2022-01-04 16:36:37 +0100
commitbcb489c3b869fb6c15ee26d511f5042b8ce698ae (patch)
treecd663d747e0ed00d57c299e85ad193971ed8febc /src/gameplay.hpp
parentadd headers (diff)
downloadthreshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.gz
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.bz2
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.xz
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.tar.zst
threshold-bcb489c3b869fb6c15ee26d511f5042b8ce698ae.zip
map read from file
Diffstat (limited to 'src/gameplay.hpp')
-rw-r--r--src/gameplay.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gameplay.hpp b/src/gameplay.hpp
index 06ed0a7..7097995 100644
--- a/src/gameplay.hpp
+++ b/src/gameplay.hpp
@@ -13,6 +13,7 @@
#include "entity.hpp"
#include <vector>
+#include <iostream>
class Game {
int nEnemies;
@@ -22,7 +23,7 @@ class Game {
Entity * player;
public:
- Game();
+ Game(std::string const & path);
~Game();
void start() const ;