diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2023-12-04 23:42:49 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-04 23:42:49 -0600 |
| commit | 421d8ce2c837e3140d8f866e63032c277b31a413 (patch) | |
| tree | d5f06fbcd02c24c6b40edd22cbdfda4d6ed6a39f /azalea/src/prelude.rs | |
| parent | da4afa8ae3afec4cd59b9a19ae1e04818f1763a7 (diff) | |
| download | azalea-drasl-421d8ce2c837e3140d8f866e63032c277b31a413.tar.xz | |
Replace Bevy's FixedUpdate with Azalea's GameTick (#119)
* replace bevy FixedUpdate with azalea GameTick
* Update to Bevy 0.12.1
Diffstat (limited to 'azalea/src/prelude.rs')
| -rw-r--r-- | azalea/src/prelude.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/azalea/src/prelude.rs b/azalea/src/prelude.rs index 87cb0b53..b4d66aaf 100644 --- a/azalea/src/prelude.rs +++ b/azalea/src/prelude.rs @@ -9,3 +9,4 @@ pub use azalea_client::{Account, Client, Event}; // this is necessary to make the macros that reference bevy_ecs work pub use crate::ecs as bevy_ecs; pub use crate::ecs::{component::Component, system::Resource}; +pub use azalea_core::tick::GameTick; |
