8 lines
97 B
C++
8 lines
97 B
C++
|
#pragma once
|
||
|
|
||
|
struct Score {
|
||
|
int lives = 0;
|
||
|
int points = 0;
|
||
|
int eatenPellets = 0;
|
||
|
};
|