aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/lib.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-11-13 12:34:47 +0930
committermat <git@matdoes.dev>2025-11-13 07:04:52 +0400
commitfbaae39cdf9c5a7a34005a51a37b85f7cdd5ea00 (patch)
tree3126fb34a4e0ac979a1103a8227a2b9a136c1553 /azalea-core/src/lib.rs
parenta4312599f7c04709a92b7be238dcf577bafbb14f (diff)
downloadazalea-drasl-fbaae39cdf9c5a7a34005a51a37b85f7cdd5ea00.tar.xz
rename ResourceLocation to Identifier ahead of mojmap changes
Diffstat (limited to 'azalea-core/src/lib.rs')
-rw-r--r--azalea-core/src/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs
index 9fdf4b6c..b87e6143 100644
--- a/azalea-core/src/lib.rs
+++ b/azalea-core/src/lib.rs
@@ -15,11 +15,16 @@ pub mod direction;
pub mod filterable;
pub mod game_type;
pub mod hit_result;
+pub mod identifier;
pub mod math;
pub mod objectives;
pub mod position;
pub mod registry_holder;
-pub mod resource_location;
+pub mod resource_location {
+ #![deprecated(note = "renamed to `identifier`.")]
+ #[deprecated(note = "renamed to `identifier::Identifier`.")]
+ pub type ResourceLocation = crate::identifier::Identifier;
+}
pub mod sound;
#[cfg(feature = "bevy_ecs")]
pub mod tick;