Async Entity Component System based on the ideas of specs (https://github.com/amethyst/specs)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
521 B

  1. mod core;
  2. mod executor;
  3. mod iter;
  4. mod misc;
  5. mod std;
  6. pub use self::core::{
  7. Consumer, Driver, Executor, ExecutorCallback, Folder, IndexedParallelIterator, IndexedProducer,
  8. IndexedProducerCallback, IntoParallelIterator, IntoParallelRefIterator,
  9. IntoParallelRefMutIterator, ParallelDrainFull, ParallelDrainRange, ParallelExtend,
  10. ParallelIterator, Producer, ProducerCallback, Reducer, Setup, WithIndexedProducer,
  11. WithProducer, WithSetup,
  12. };
  13. pub use self::executor::{DefaultExecutor, SequentialExecutor};