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

mod extensions;
pub use self::extensions::WorldExt;