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