pacman/lib/Score.hpp
Corentin Jabot 93186dc8b9 Add ghosts
No movement for now!
2021-06-24 18:33:08 +02:00

8 lines
91 B
C++

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