mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-01 07:50:25 +01:00
10 lines
167 B
C++
10 lines
167 B
C++
|
#pragma once
|
||
|
|
||
|
#include <filesystem>
|
||
|
#include <optional>
|
||
|
|
||
|
#include <tinyfiledialogs.h>
|
||
|
|
||
|
namespace feis {
|
||
|
std::optional<std::filesystem::path> ask_for_save_path();
|
||
|
}
|