()
| 37 | } |
| 38 | |
| 39 | pub fn is_low_violence() -> Result<bool, SteamError> { |
| 40 | app::with_client(|client| Ok(client.apps().is_low_violence())) |
| 41 | } |
| 42 | |
| 43 | pub fn get_build_id() -> Result<i32, SteamError> { |
| 44 | app::with_client(|client| Ok(client.apps().app_build_id())) |
nothing calls this directly
no test coverage detected