mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-05-02 18:42:10 -04:00
12 lines
236 B
C++
12 lines
236 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;
|
|
|
|
}
|