[][src]Module bevy_app::prelude

Re-exports

pub use crate::stage;

Structs

App

Containers of app logic and data

AppBuilder

Configure Apps using the builder pattern

EventReader

Reads events of type T in order and tracks which events have already been read.

Events

An event collection that represents the events that occurred within the last two Events::update calls. Events can be cheaply read using an EventReader. This collection is meant to be paired with a system that calls Events::update exactly once per update/frame. Events::update_system is a system that does this. EventReaders are expected to read events from this collection at least once per update/frame. If events are not handled within one frame/update, they will be dropped.

Traits

Plugin

A collection of Bevy App logic and configuration

Derive Macros

DynamicPlugin

Generates a dynamic plugin entry point function for the given Plugin type.