pacman/lib/include/Score.hpp

14 lines
203 B
C++
Raw Normal View History

2021-06-24 08:32:54 +00:00
#pragma once
2021-07-05 12:10:01 +00:00
namespace pacman {
2021-06-24 08:32:54 +00:00
constexpr int DEFAULT_LIVES = 3;
2021-06-24 08:32:54 +00:00
struct Score {
int lives = DEFAULT_LIVES;
2021-06-24 11:32:52 +00:00
int points = 0;
int eatenPellets = 0;
int eatenFruits = 0;
2021-06-24 08:32:54 +00:00
};
2021-07-05 12:10:01 +00:00
} // namespace pacman