Print formated output with the frames and rolls now works

This commit is contained in:
2025-03-18 20:00:59 +01:00
parent e54b191f7a
commit 959a55d4d0
5 changed files with 145 additions and 7 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef PRINTFRAMES_H
#define PRINTFRAMES_H
#include <vector>
using namespace std;
class PrintFrames {
public:
PrintFrames();
~PrintFrames();
static void PrintHeader(vector<int> rolls);
static void PrintValue(vector<int> rolls);
};
#endif