10 lines
146 B
C++
10 lines
146 B
C++
|
#pragma once
|
||
|
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace fs = std::filesystem;
|
||
|
|
||
|
#include <config.hpp>
|
||
|
|
||
|
Difficulty parseDifficulty(fs::path difficultyPath);
|