pacman/lib/include/GameState.hpp

22 lines
322 B
C++

#pragma once
#include "Ghost.hpp"
#include "PacMan.hpp"
#include "Pellets.hpp"
#include "Score.hpp"
#include "SuperPellets.hpp"
namespace pacman {
struct GameState {
Blinky blinky;
Speedy speedy;
Inky inky;
Clyde clyde;
PacMan pacMan;
Pellets pellets;
SuperPellets superPellets;
};
} // namespace pacman