mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-25 14:02:55 -05:00
14 lines
321 B
C++
14 lines
321 B
C++
#include <smoke_api/smoke_api.hpp>
|
|
#include <steam_impl/steam_apps.hpp>
|
|
|
|
using namespace smoke_api;
|
|
|
|
VIRTUAL(bool) IClientAppManager_IsAppDlcInstalled(
|
|
PARAMS( // NOLINT(misc-unused-parameters)
|
|
AppId_t app_id,
|
|
AppId_t dlc_id
|
|
)
|
|
) {
|
|
return steam_apps::IsDlcUnlocked(__func__, app_id, dlc_id);
|
|
}
|