forked from amethyst/specs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprelude.rs
27 lines (24 loc) · 854 Bytes
/
prelude.rs
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
//! Prelude module
//!
//! Contains all of the most common traits, structures,
pub use crate::join::Join;
#[cfg(feature = "parallel")]
pub use crate::join::ParJoin;
pub use hibitset::BitSet;
pub use shred::{
Accessor, Dispatcher, DispatcherBuilder, Read, ReadExpect, Resource, ResourceId, RunNow,
StaticAccessor, System, SystemData, World, Write, WriteExpect,
};
pub use shrev::ReaderId;
#[cfg(feature = "parallel")]
pub use rayon::iter::ParallelIterator;
#[cfg(feature = "parallel")]
pub use shred::AsyncDispatcher;
pub use crate::{
changeset::ChangeSet,
storage::{
ComponentEvent, DenseVecStorage, DefaultVecStorage, FlaggedStorage, HashMapStorage,
NullStorage, ReadStorage, Storage, Tracked, VecStorage, WriteStorage,
},
world::{Builder, Component, Entities, Entity, EntityBuilder, LazyUpdate, WorldExt},
};