diff options
Diffstat (limited to 'labb4/GameState.h')
| -rw-r--r-- | labb4/GameState.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/labb4/GameState.h b/labb4/GameState.h index dfd7ac5..17b86de 100644 --- a/labb4/GameState.h +++ b/labb4/GameState.h @@ -27,7 +27,7 @@ public: /* * Copy assignment. */ - GameState &operator=(const GameState &other); + GameState& operator=(const GameState& other); /* * Clear and redraw entire playing field. @@ -75,7 +75,7 @@ public: Hero getHero () const; private: - std::vector<Robot *> robots; // the robots and the junk combined + std::vector<Robot*> robots; // the robots and the junk combined Hero hero; // the hero // private helpers |
