pacman/lib/include/Score.hpp
2021-07-05 12:02:36 +02:00

7 lines
91 B
C++

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