diff options
| author | mat <git@matdoes.dev> | 2023-12-05 11:19:53 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-12-05 11:19:53 -0600 |
| commit | c5b15c029363a99f3446cb6943b86c1162f32ac2 (patch) | |
| tree | eb4c84772aeaf71b073de5b5128cccbb0ad5c7b7 | |
| parent | 020dc434ff14722a709e6e90da6aacf80dab77be (diff) | |
| download | azalea-drasl-c5b15c029363a99f3446cb6943b86c1162f32ac2.tar.xz | |
put azalea_core::tick behind feature flag
| -rwxr-xr-x | azalea-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
