azalea_core/
lib.rs

1#![allow(incomplete_features)]
2#![feature(generic_const_exprs)]
3#![doc = include_str!("../README.md")]
4
5pub mod aabb;
6pub mod attribute_modifier_operation;
7pub mod bitset;
8pub mod checksum;
9pub mod codec_utils;
10pub mod color;
11pub mod cursor3d;
12pub mod data_registry;
13pub mod delta;
14pub mod difficulty;
15pub mod direction;
16pub mod filterable;
17pub mod game_type;
18pub mod hit_result;
19pub mod math;
20pub mod objectives;
21pub mod position;
22pub mod registry_holder;
23#[doc(hidden)]
24pub mod resource_location {
25    #![deprecated(note = "moved to `azalea_registry::identifier`.")]
26    #[deprecated(note = "moved to `azalea_registry::identifier::Identifier`.")]
27    pub type ResourceLocation = azalea_registry::identifier::Identifier;
28}
29#[doc(hidden)]
30pub mod identifier {
31    #![deprecated(note = "moved to `azalea_registry::identifier`.")]
32    #[deprecated(note = "moved to `azalea_registry::identifier::Identifier`.")]
33    pub type Identifier = azalea_registry::identifier::Identifier;
34}
35pub mod sound;
36#[cfg(feature = "bevy_ecs")]
37pub mod tick;
38pub mod tier;