mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-06 05:25:43 -05:00
10 lines
227 B
C++
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);
|
|
}
|