temper 0.2.0

A simulation-first Rust game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use crate::core::{
    app::App,
    plugin::Plugin,
    schedule::{Schedule, Stage},
    time::FixedTime,
};
pub use crate::ecs::{
    bundle::Bundle,
    command::Commands,
    entity::{Entity, EntityAllocator},
    event::{Event, Events},
    query::{QueryItem, QueryItem2, QueryItemMut},
    resource::{Resource, Resources},
    world::World,
};