From 60c8ae806b8772902003269b489181a3f23c9bce Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 23 Oct 2023 15:37:06 -0700 Subject: [PATCH] inspector: remove unused next id system --- src/inspector/Inspector.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/inspector/Inspector.zig b/src/inspector/Inspector.zig index d3a0c8f6c..521590d90 100644 --- a/src/inspector/Inspector.zig +++ b/src/inspector/Inspector.zig @@ -20,11 +20,6 @@ const window_screen = "Screen"; const window_size = "Surface Info"; const window_imgui_demo = "Dear ImGui Demo"; -/// Unique ID system. This is used to generate unique IDs for Dear ImGui -/// widgets. Overflow to reset to 0 is fine. IDs should still be prefixed -/// by type to avoid collisions but its never going to happen. -next_id: usize = 123456789, - /// The surface that we're inspecting. surface: *Surface,