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
|
|
|
|
2021-09-07 14:00:19 +00:00
|
|
|
constexpr int DEFAULT_LIVES = 3;
|
|
|
|
|
2021-06-24 08:32:54 +00:00
|
|
|
struct Score {
|
2021-09-07 14:00:19 +00:00
|
|
|
int lives = DEFAULT_LIVES;
|
2021-06-24 11:32:52 +00:00
|
|
|
int points = 0;
|
|
|
|
int eatenPellets = 0;
|
2021-09-13 12:47:09 +00:00
|
|
|
int eatenFruits = 0;
|
2021-06-24 08:32:54 +00:00
|
|
|
};
|
2021-07-05 12:10:01 +00:00
|
|
|
|
|
|
|
} // namespace pacman
|