feat(editor): add voltex_editor crate with IMGUI core (font, draw_list, widgets)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 15:10:53 +09:00
parent 87b9b7c1bd
commit 19db4dd390
8 changed files with 671 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
pub mod font;
pub mod draw_list;
pub mod layout;
pub mod ui_context;
pub mod widgets;
pub use font::FontAtlas;
pub use draw_list::{DrawVertex, DrawCommand, DrawList};
pub use layout::LayoutState;
pub use ui_context::UiContext;