mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-27 01:17:40 +00:00
17 lines
373 B
C++
17 lines
373 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QString>
|
||
|
|
#include "common/common_types.h"
|
||
|
|
#include "frontend_common/mod_manager.h"
|
||
|
|
|
||
|
|
namespace QtCommon::Mod {
|
||
|
|
|
||
|
|
QStringList GetModFolders(const QString &root, const QString &fallbackName);
|
||
|
|
|
||
|
|
const QString ExtractMod(const QString &path);
|
||
|
|
|
||
|
|
}
|