Struct constellation::World [] [src]

pub struct World { /* fields omitted */ }

Stores entities are resources, and provides mechanisms to update the world state via systems.

Methods

impl World
[src]

Constructs a new World.

Registers a new resource with the World, allowing systems to access the resource.

Registers a new resource with the World, allowing systems to access the resource.

impl World
[src]

Executes a SystemCommandBuffer, potentially scheduling systems for parallel execution, with the given state.

Executes a SystemCommandBuffer, potentially scheduling systems for parallel execution, with a default state value.

Executes a SystemCommandBuffer sequentially, with the given state.

Executes a SystemCommandBuffer sequentially, with a default state value.

Trait Implementations

impl Sync for World
[src]