lib_game_detector 0.0.33

A Rust library for detecting and parsing data about games installed on the system
Documentation
macro_rules! debug_path {
    ($description: expr, $path: ident) => {
        tracing::debug!(
            "{LAUNCHER} - {} exists at {:?}: {}",
            $description,
            $path,
            $path.exists()
        );
    };
}
pub(crate) use debug_path;

macro_rules! debug_fallback_flatpak {
    () => {
        tracing::debug!("{LAUNCHER} - Attempting to fall back to flatpak");
    };
}
pub(crate) use debug_fallback_flatpak;

macro_rules! warn_no_games {
    () => {
        tracing::warn!("{LAUNCHER} - Detected but no games found");
    };
}
pub(crate) use warn_no_games;