pacman/lib/Score.hpp

8 lines
97 B
C++
Raw Normal View History

2021-06-24 08:32:54 +00:00
#pragma once
struct Score {
int lives = 0;
int points = 0;
int eatenPellets = 0;
};