You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SmokeAPI/src/common/app_cache.hpp

12 lines
200 B
C++

#pragma once
#include <core/types.hpp>
namespace smoke_api::app_cache {
Vector<DLC> get_dlcs(AppId_t app_id) noexcept;
bool save_dlcs(AppId_t app_id, const Vector<DLC>& dlcs) noexcept;
}