From eefe7e78c9d67b2a07b88d9a116b3b9ad6c7befa Mon Sep 17 00:00:00 2001 From: Faerbit Date: Mon, 20 Oct 2014 18:44:23 +0200 Subject: [PATCH] Fixing minor bugs. --- level.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level.hh b/level.hh index 99f6b0e..e974136 100644 --- a/level.hh +++ b/level.hh @@ -8,10 +8,10 @@ class Level { public: - Level(string filePath); + Level(std::string filePath); ~Level(); void load(); private: - string filePath; - std::vector entities; -} + std::string filePath; + std::vector entities; +};