pacman/lib/include/Score.hpp
Corentin Jabot c495dd9c37 Basic fruits support
Of course, there is no support for levels yet!
2021-09-13 14:48:59 +02:00

14 lines
203 B
C++

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