diff --git a/src/heroic/heroic_game.rs b/src/heroic/heroic_game.rs index 4e6bb68..b441a4b 100644 --- a/src/heroic/heroic_game.rs +++ b/src/heroic/heroic_game.rs @@ -14,7 +14,7 @@ pub struct HeroicGame { } impl HeroicGame{ - fn is_installed(&self) -> bool{ + pub fn is_installed(&self) -> bool{ Path::new(&self.install_path).join(&self.executable).exists() } }