Files
SmokeAPI/static/smoke_api/api.hpp
2025-08-23 13:44:17 +05:00

10 lines
227 B
C++

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