Rust · 257 bytes Raw Blame History
1 //! WANDA Core Library
2 //!
3 //! Core functionality for running WeMod on Linux via Wine/Proton.
4
5 pub mod config;
6 pub mod error;
7 pub mod launcher;
8 pub mod prefix;
9 pub mod steam;
10 pub mod wemod;
11
12 pub use config::WandaConfig;
13 pub use error::{Result, WandaError};
14