sdl2_extras/
lib.rs

1//! # Rust-SDL2-Extras
2//! 
3//! Additional functionalities and helpers
4//! which were not included in the original 
5//! crate (but were included in examples)
6//! or can help with some bottlenecks 
7//! and improve code readability and quality.
8//! 
9
10extern crate sdl2;
11extern crate floating_duration;
12
13#[cfg(feature = "fspecs")]
14extern crate specs;
15
16pub mod adapters;
17pub mod common;
18pub mod managers;
19
20#[cfg(feature = "fspecs")]
21pub mod fspecs;