1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! # Rust-SDL2-Extras
//! 
//! Additional functionalities and helpers
//! which were not included in the original 
//! crate (but were included in examples)
//! or can help with some bottlenecks 
//! and improve code readability and quality.
//! 

extern crate sdl2;
extern crate floating_duration;

#[cfg(feature = "fspecs")]
extern crate specs;

pub mod adapters;
pub mod common;
pub mod managers;

#[cfg(feature = "fspecs")]
pub mod fspecs;