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

Function is_installed

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

Source from the content-addressed store, hash-verified

5};
6
7pub fn is_installed(app_id: AppID) -> Result<bool, SteamError> {
8 app::with_client(|client| Ok(client.apps().is_app_installed(app_id.into())))
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())))

Callers

nothing calls this directly

Calls 1

with_clientFunction · 0.85

Tested by

no test coverage detected