thallium 0.6.6

A basic game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]

/// An alias for [`thallium_ecs`], also with the related deives from [`thallium_derive`]
#[cfg(feature = "ecs")]
pub mod ecs {
    #[cfg(feature = "derive")]
    pub use thallium_derive::{Component, Resource};

    pub use thallium_ecs::*;
}

/// An alias for [`thallium_derive`]
#[cfg(feature = "derive")]
pub mod derive {
    pub use thallium_derive::*;
}