19 lines
339 B
C++
19 lines
339 B
C++
#ifndef SCORECALCULATOR_H
|
|
#define SCORECALCULATOR_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "../include/Frame.h"
|
|
|
|
using namespace std;
|
|
|
|
class ScoreCalculator {
|
|
public:
|
|
ScoreCalculator() = default;
|
|
|
|
~ScoreCalculator() = default;
|
|
|
|
static int getScore(const vector<Frame>& frames);
|
|
};
|
|
|
|
#endif |