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;
8#[cfg(feature = "serde")]
9pub mod checksum;
10#[cfg(feature = "serde")]
11pub mod codec_utils;
12pub mod color;
13pub mod cursor3d;
14#[cfg(feature = "serde")]
15pub mod data_registry;
16pub mod delta;
17pub mod difficulty;
18pub mod direction;
19pub mod entity_id;
20pub mod filterable;
21pub mod game_type;
22pub mod heightmap_kind;
23pub mod hit_result;
24pub mod math;
25pub mod objectives;
26pub mod position;
27#[cfg(feature = "serde")]
28pub mod registry_holder;
29#[doc(hidden)]
30pub mod resource_location {
31    #![deprecated(note = "moved to `azalea_registry::identifier`.")]
32    #[deprecated(note = "moved to `azalea_registry::identifier::Identifier`.")]
33    pub type ResourceLocation = azalea_registry::identifier::Identifier;
34}
35#[doc(hidden)]
36pub mod identifier {
37    #![deprecated(note = "moved to `azalea_registry::identifier`.")]
38    #[deprecated(note = "moved to `azalea_registry::identifier::Identifier`.")]
39    pub type Identifier = azalea_registry::identifier::Identifier;
40}
41pub mod sound;
42#[cfg(feature = "bevy_ecs")]
43pub mod tick;
44pub mod tier;