From c5b15c029363a99f3446cb6943b86c1162f32ac2 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 5 Dec 2023 11:19:53 -0600 Subject: [PATCH] put azalea_core::tick behind feature flag --- azalea-core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs index c1f991df..5471120b 100755 --- a/azalea-core/src/lib.rs +++ b/azalea-core/src/lib.rs @@ -17,5 +17,6 @@ pub mod particle; pub mod position; pub mod registry_holder; pub mod resource_location; +#[cfg(feature = "bevy_ecs")] pub mod tick; pub mod tier;