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
31
32
33
#![allow(dead_code)]

pub mod borrow;
pub mod command;
pub mod cons;
pub mod entity;
pub mod event;
pub mod filter;
pub mod index;
pub mod iterator;
pub mod permission;
pub mod query;
pub mod storage;
pub mod subworld;
pub mod world;

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

mod tuple;
mod zip;

pub mod prelude {
    pub use crate::{
        command::CommandBuffer,
        entity::Entity,
        event::Event,
        filter::filter_fns::*,
        query::{IntoQuery, Query, Read, Tagged, TryRead, TryWrite, Write},
        subworld::SubWorld,
        world::{EntityStore, Universe, World},
    };
}