#pragma once #include "Ghost.hpp" #include "PacMan.hpp" #include "Pellets.hpp" #include "Score.hpp" #include "SuperPellets.hpp" namespace pacman { struct GameState { std::tuple ghosts; PacMan pacMan; Pellets pellets; SuperPellets superPellets; }; } // namespace pacman