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