pacman/lib/include/Score.hpp

11 lines
133 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
struct Score {
2021-06-24 11:32:52 +00:00
int lives = 0;
int points = 0;
int eatenPellets = 0;
2021-06-24 08:32:54 +00:00
};
2021-07-05 12:10:01 +00:00
} // namespace pacman