(app_id: AppID)
| 5 | }; |
| 6 | |
| 7 | pub 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 | |
| 11 | pub fn is_dlc_installed(app_id: AppID) -> Result<bool, SteamError> { |
| 12 | app::with_client(|client| Ok(client.apps().is_dlc_installed(app_id.into()))) |
nothing calls this directly
no test coverage detected