sdl2_extras/fspecs/
mod.rs

1//!
2//! Extras for Specs crate (ECS framework)
3//! 
4//! To use this you'll need to build with the feature `fspecs`:
5//! 
6//! ```bash
7//! $ cargo build --features "fspecs"
8//! ```
9//! 
10//! or add the following line in Cargo.toml file inside your crate:
11//! 
12//! ```toml
13//! [dependencies.sdl2-extras]
14//! version = ...
15//! default-features = false
16//! features = ["fspecs"]
17//! ```
18
19mod extensions;
20pub use self::extensions::WorldExt;