aboutsummaryrefslogtreecommitdiff
path: root/azalea-ecs/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-02-05 14:31:52 -0600
committermat <github@matdoes.dev>2023-02-05 14:31:52 -0600
commit0d3a091c232d409939db82dfb30f700e57583c85 (patch)
tree592c3734d824fb2a5cc25d07a997c98239b7d99c /azalea-ecs/src
parenta72b76839782b26e49598313bb04c5d322a34788 (diff)
downloadazalea-drasl-0d3a091c232d409939db82dfb30f700e57583c85.tar.xz
improve docs
Diffstat (limited to 'azalea-ecs/src')
-rw-r--r--azalea-ecs/src/lib.rs14
1 files changed, 9 insertions, 5 deletions
diff --git a/azalea-ecs/src/lib.rs b/azalea-ecs/src/lib.rs
index 44579c5d..571bd741 100644
--- a/azalea-ecs/src/lib.rs
+++ b/azalea-ecs/src/lib.rs
@@ -1,16 +1,20 @@
#![feature(trait_alias)]
-//! Re-export important parts of `bevy_ecs` and `bevy_app` and make them more
-//! compatible with Azalea.
+//! Re-export important parts of [`bevy_ecs`] and [`bevy_app`] and make them
+//! more compatible with Azalea.
//!
//! This is completely compatible with `bevy_ecs`, so it won't cause issues if
//! you use plugins meant for Bevy.
//!
//! Changes:
-//! - Add [`TickPlugin`], [`TickStage`] and [`AppTickExt`]
+//! - Add [`TickPlugin`], [`TickStage`] and [`AppTickExt`] (which adds
+//! `app.add_tick_system` and `app.add_tick_system_set`).
//! - Change the macros to use azalea/azalea_ecs instead of bevy/bevy_ecs
-//! - Rename bevy_ecs::world::World to azalea_ecs::ecs::Ecs
-//! - Re-export `bevy_app` in the `app` module.
+//! - Rename `world::World` to [`ecs::Ecs`]
+//! - Re-export `bevy_app` in the [`app`] module.
+//!
+//! [`bevy_ecs`]: https://docs.rs/bevy_ecs
+//! [`bevy_app`]: https://docs.rs/bevy_app
use std::time::{Duration, Instant};