srs2dge 0.2.0

Simple Rust 2D Game Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use srs2dge_link_static::*;

#[cfg(feature = "dynamic")]
macro_rules! fix_clippy_single_component_path_imports {
    () => {
        #[allow(clippy::all)]
        #[allow(unused_imports)]
        use srs2dge_link_dynamic;
    };
}

#[cfg(feature = "dynamic")]
fix_clippy_single_component_path_imports!();