Trait keeshond::scene::DrawerSystem[][src]

pub trait DrawerSystem {
    fn draw(&self, args: DrawerArgs<'_>);

    fn priority(&self) -> i32 { ... }
}
Expand description

A system that handles drawing logic every frame, typically giving Entities behaviors based on which Components they have. Mutable access to the Components is not permitted, as this could lead to behavior that is framerate-dependent.

Required methods

Provided methods

Implementors