From a95e79ac3550a4b78f23b3cf0b4f4914f2360f77 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 25 Apr 2024 17:46:08 +0200 Subject: [PATCH] Revert "remove redundant struct" This reverts commit d0b5c4d5145422a064db1055b99ab2bc624b9770. --- include/beatmaps.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/beatmaps.hpp diff --git a/include/beatmaps.hpp b/include/beatmaps.hpp new file mode 100644 index 0000000..bc25601 --- /dev/null +++ b/include/beatmaps.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +namespace fs = std::filesystem; + +struct DifficultySettings { + double hpDrainRate; + double circleSize; + double approachRate; + double overallDifficulty; +};