mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-15 04:05:02 +01:00
10 lines
209 B
Rust
10 lines
209 B
Rust
use egui::Ui;
|
|
#[cfg(feature = "derive")]
|
|
pub use egui_inspect_derive as derive;
|
|
|
|
pub trait Inspect {
|
|
fn inspect_mut(&mut self, ui: &mut Ui, id_source: u64) {
|
|
loop {}
|
|
}
|
|
}
|
|
impl Inspect for () {}
|