pacman/lib/include/Score.hpp
2021-07-05 14:10:01 +02:00

11 lines
133 B
C++

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