From d0bd69aee1fdddb3a53717266eefb95ba0871f9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93lafur=20Waage?= Date: Mon, 6 Sep 2021 16:27:29 +0200 Subject: [PATCH] Removing unnecessary forward decl. --- lib/include/PacMan.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/include/PacMan.hpp b/lib/include/PacMan.hpp index 113b1d7..555df17 100644 --- a/lib/include/PacMan.hpp +++ b/lib/include/PacMan.hpp @@ -8,15 +8,10 @@ namespace pacman { -class Board; -class InputState; - class PacMan { public: GridPosition currentSprite() const; - Position position() const; - GridPosition positionInGrid() const; void update(std::chrono::milliseconds time_delta, Direction input_direction);