summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-07-16 17:39:21 +0200
committerHampusM <hampus@hampusmat.com>2026-07-16 17:39:21 +0200
commitaf7e3ed5b4afdf78972749b627c2765c9e5945fb (patch)
tree3b6bf23e2dbc15394e13faeb854a2dd7b817ec37 /engine
parent6e3864ded2ca04cbe5918c6b3efc7d49d07d4afd (diff)
refactor(engine): rename ui::imgui mod to dear_imgui
Diffstat (limited to 'engine')
-rw-r--r--engine/src/ui.rs2
-rw-r--r--engine/src/ui/dear_imgui.rs (renamed from engine/src/ui/imgui.rs)2
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/src/ui.rs b/engine/src/ui.rs
index 9dd3280..939c408 100644
--- a/engine/src/ui.rs
+++ b/engine/src/ui.rs
@@ -1 +1 @@
-pub mod imgui;
+pub mod dear_imgui;
diff --git a/engine/src/ui/imgui.rs b/engine/src/ui/dear_imgui.rs
index f9b4130..7c5dbc3 100644
--- a/engine/src/ui/imgui.rs
+++ b/engine/src/ui/dear_imgui.rs
@@ -90,7 +90,7 @@ pub static SHADER_ASSET_LABEL: LazyLock<AssetLabel> = LazyLock::new(|| AssetLabe
name: Some("imgui_shader".into()),
});
-/// Imgui context
+/// Dear Imgui context
#[derive(Sole)]
pub struct Context
{