()
| 33 | } |
| 34 | |
| 35 | pub fn is_cybercafe() -> Result<bool, SteamError> { |
| 36 | app::with_client(|client| Ok(client.apps().is_cybercafe())) |
| 37 | } |
| 38 | |
| 39 | pub fn is_low_violence() -> Result<bool, SteamError> { |
| 40 | app::with_client(|client| Ok(client.apps().is_low_violence())) |
nothing calls this directly
no test coverage detected