engine/include/file_dialog.h

11 lines
197 B
C
Raw Normal View History

#pragma once
#include <filesystem>
#include <string>
#include <vector>
2024-06-04 22:31:22 +00:00
namespace engine {
2024-06-04 22:31:22 +00:00
std::filesystem::path openFileDialog(const std::vector<std::string>& extensions);
2024-06-04 22:31:22 +00:00
} // namespace engine