Revert "remove redundant struct"

This reverts commit d0b5c4d514.
This commit is contained in:
jacekpoz 2024-04-25 17:46:08 +02:00
parent b710520724
commit a95e79ac35
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

12
include/beatmaps.hpp Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <filesystem>
namespace fs = std::filesystem;
struct DifficultySettings {
double hpDrainRate;
double circleSize;
double approachRate;
double overallDifficulty;
};