13 lines
203 B
C++
13 lines
203 B
C++
|
#pragma once
|
||
|
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace fs = std::filesystem;
|
||
|
|
||
|
struct DifficultySettings {
|
||
|
double hpDrainRate;
|
||
|
double circleSize;
|
||
|
double approachRate;
|
||
|
double overallDifficulty;
|
||
|
};
|