c495dd9c37
Of course, there is no support for levels yet!
13 lines
203 B
C++
13 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
|