mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-24 13:32:51 -05:00
10 lines
199 B
C++
10 lines
199 B
C++
#pragma once
|
|
|
|
#include "types.hpp"
|
|
|
|
namespace smoke_api::cache {
|
|
std::vector<DLC> get_dlcs(AppId_t app_id) noexcept;
|
|
|
|
bool save_dlcs(AppId_t app_id, const std::vector<DLC>& dlcs) noexcept;
|
|
}
|