[][src]Trait amethyst_test::GameUpdate

pub trait GameUpdate {
    fn update(&mut self, _world: &World) { ... }
}

Exposes the update method of game data so that this crate's States can invoke it.

Provided methods

fn update(&mut self, _world: &World)

Runs the systems to update the game.

Parameters

  • world: World in which the game takes place.
Loading content...

Implementations on Foreign Types

impl<'a, 'b> GameUpdate for GameData<'a, 'b>[src]

Loading content...

Implementors

Loading content...