MCPcopy Create free account
hub / github.com/PerroEngine/Perro / is_dlc_installed

Function is_dlc_installed

perro_source/api_modules/perro_steamworks/src/apps.rs:11–13  ·  view source on GitHub ↗
(app_id: AppID)

Source from the content-addressed store, hash-verified

9}
10
11pub fn is_dlc_installed(app_id: AppID) -> Result<bool, SteamError> {
12 app::with_client(|client| Ok(client.apps().is_dlc_installed(app_id.into())))
13}
14
15pub fn is_dlc_id_installed(dlc_id: DLCID) -> Result<bool, SteamError> {
16 app::with_client(|client| Ok(client.apps().is_dlc_installed(dlc_id.into())))

Callers

nothing calls this directly

Calls 1

with_clientFunction · 0.85

Tested by

no test coverage detected