29 lines
302 B
C++
29 lines
302 B
C++
#ifndef __STATS__
|
|
#define __STATS__
|
|
|
|
#include <iostream>
|
|
|
|
|
|
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
|