From fbaae39cdf9c5a7a34005a51a37b85f7cdd5ea00 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 13 Nov 2025 12:34:47 +0930 Subject: rename ResourceLocation to Identifier ahead of mojmap changes --- azalea-core/src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'azalea-core/src/lib.rs') 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; -- cgit v1.2.3