Files
SmokeAPI/src/smoke_api/api.hpp
2025-08-22 22:01:54 +05:00

10 lines
234 B
C++

#pragma once
#include "smoke_api/types.hpp"
namespace api {
std::optional<std::vector<DLC>> fetch_dlcs_from_github(AppId_t app_id) noexcept;
std::optional<std::vector<DLC>> fetch_dlcs_from_steam(AppId_t app_id) noexcept;
}