()
| 49 | } |
| 50 | |
| 51 | pub fn get_owner() -> Result<SteamID, SteamError> { |
| 52 | app::with_client(|client| Ok(client.apps().app_owner().into())) |
| 53 | } |
| 54 | |
| 55 | pub fn get_available_languages() -> Result<Vec<String>, SteamError> { |
| 56 | app::with_client(|client| Ok(client.apps().available_game_languages())) |
nothing calls this directly
no test coverage detected