From e4cf2899173f9b28e722a2f4c1b4e5e98a0e0ce5 Mon Sep 17 00:00:00 2001 From: Franklin Date: Sun, 24 Mar 2024 15:08:37 +0100 Subject: [PATCH] Exported setimageonloadmarker --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8851dd..90a4596 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -608,7 +608,7 @@ dependencies = [ [[package]] name = "bevy_icon_creator" -version = "0.1.3" +version = "0.1.4" dependencies = [ "bevy", ] diff --git a/Cargo.toml b/Cargo.toml index 9fe342d..425132c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_icon_creator" -version = "0.1.3" +version = "0.1.4" edition = "2021" authors = ["Franklin E. Blanco"] description = "A plugin to automatically create Icons from entities/models in bevy" diff --git a/src/lib.rs b/src/lib.rs index 0a6f520..c124af6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,11 +3,11 @@ mod update; mod setup; mod state; mod utils; -mod set_image_on_load; mod register_types; mod hash_to_uuid_ext; pub mod image_ext; pub mod plugin; pub mod needs_icon_marker; -pub mod created_icons; \ No newline at end of file +pub mod created_icons; +pub mod set_image_on_load; \ No newline at end of file