Rust · 313 bytes Raw Blame History
1 //! Steam integration module
2 //!
3 //! Handles Steam library discovery, game detection, and Proton version management.
4
5 mod library;
6 mod proton;
7 mod vdf;
8
9 pub use library::{SteamApp, SteamInstallation, SteamLibrary};
10 pub use proton::{ProtonCompatibility, ProtonManager, ProtonVersion};
11 pub use vdf::parse_vdf_file;
12