brood 0.9.1

A fast and flexible entity component system library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tasks that are used to define a [`Schedule`].
//!
//! [`Schedule`]: trait@crate::system::schedule::Schedule

mod sealed;

pub(crate) use sealed::Task;

use crate::hlist::define_null;

define_null!();

/// A task that implements [`System`].
pub struct System<System>(pub System);

/// A task that implements [`ParSystem`].
pub struct ParSystem<ParSystem>(pub ParSystem);