#ifndef __STATS__ #define __STATS__ #include class Stats{ private: int m_score; int m_nbMove; public: //Constructor and destructor Stats(); ~Stats(); //Helpers void incScore(int value); void incnbMove(); //Getters int getScore(); int getNbMove(); }; #endif