JustAnotherDnDGame 0.1.0
Jeu de rôle tactique au d20, vue de dessus, en C++/Qt
Loading...
Searching...
No Matches
AssetLibrary.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Valentin Eloy
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4#pragma once
5
6#include <filesystem>
7#include <string>
8#include <vector>
9
15
16namespace hmi {
17
30[[nodiscard]] std::vector<std::string> listAssetFiles(const std::filesystem::path& directory,
31 const std::string& filterText = {});
32
33} // namespace hmi
Definition AudioEngine.cpp:15
std::vector< std::string > listAssetFiles(const std::filesystem::path &directory, const std::string &filterText)
Liste les fichiers image d'un dossier, filtrés par un texte de recherche.
Definition AssetLibrary.cpp:30