1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Force to be dynamically linked for Qinetic.
//!
//! # Enabling dynamic linking.
//!
//! ## The recommended way.
//!
//! To enable dynamic linking use the `--features qinetic/dynamic` flag, when using the `cargo run` command:
//!
//! ```sh
//! cargo run --features qinetic/dynamic
//! ```
//!
//! ## The unrecommended way.
//!
//! To enable dynamic linking inside of the `Cargo.toml` file add the `dynamic` feature to the qinetic dependency:
//! This is unrecommended because it requires you to remove this feature every time you want to create a
//! release build to avoid having to ship additional files with your game.
//!
//! ```
//! features = ["dynamic"]
//! ```

#![doc(
    html_logo_url = "https://raw.githubusercontent.com/vl-mr-freeman/qinetic/master/assets/qinetic_icon.svg",
    html_favicon_url = "https://raw.githubusercontent.com/vl-mr-freeman/qinetic/master/assets/qinetic_icon.svg"
)]

// Force linking of the main Qinetic's features crate.
#[allow(unused_imports)]
use qinetic_internal;