pacman/lib/include/Score.hpp

13 lines
179 B
C++

#pragma once
namespace pacman {
constexpr int DEFAULT_LIVES = 3;
struct Score {
int lives = DEFAULT_LIVES;
int points = 0;
int eatenPellets = 0;
};
} // namespace pacman