This PR extracts the `Story` component into a separate `story` crate so that it can be shared among various crates that define stories. Release Notes: - N/A --------- Co-authored-by: Nate Butler <iamnbutler@gmail.com>
18 lines
249 B
Rust
18 lines
249 B
Rust
mod colors;
|
|
mod players;
|
|
mod status;
|
|
mod syntax;
|
|
mod system;
|
|
|
|
#[cfg(feature = "stories")]
|
|
mod stories;
|
|
|
|
pub use colors::*;
|
|
pub use players::*;
|
|
pub use status::*;
|
|
pub use syntax::*;
|
|
pub use system::*;
|
|
|
|
#[cfg(feature = "stories")]
|
|
pub use stories::*;
|