18 lines
279 B
C++
18 lines
279 B
C++
#ifndef SCORECALCULATOR_H
|
|
#define SCORECALCULATOR_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class ScoreCalculator {
|
|
public:
|
|
ScoreCalculator();
|
|
|
|
~ScoreCalculator();
|
|
|
|
static int GetScore(vector<int> rolls);
|
|
};
|
|
|
|
#endif |