pacman/lib/include/GameState.hpp

19 lines
310 B
C++
Raw Normal View History

2021-07-08 14:57:18 +00:00
#pragma once
#include "Ghost.hpp"
#include "PacMan.hpp"
#include "Pellets.hpp"
#include "Score.hpp"
#include "SuperPellets.hpp"
namespace pacman {
struct GameState {
std::tuple<Blinky, Speedy, Inky, Clyde> ghosts;
PacMan pacMan;
Pellets pellets;
SuperPellets superPellets;
};
} // namespace pacman