mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
10 lines
234 B
C++
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;
|
|
}
|