format engine_paths.cpp

This commit is contained in:
MihailRis 2024-08-06 20:59:36 +03:00
parent 6c165badf5
commit 8236600c93

View File

@ -22,9 +22,9 @@ enum F_F_NAME {
COUNT
};
/// @brief array for get file or folder name by enum `F_F_NAME`
/// @example:
/// std::filesystem::path settings = f_f_names[SETTINGS_FILE];
/// array for get file or folder name by enum `F_F_NAME`
/// example:
// `std::filesystem::path settings = f_f_names[SETTINGS_FILE];`
static std::array<std::string, F_F_NAME::COUNT> f_f_names {
"screenshots", "content", "controls.toml", "settings.toml"};