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