guiedit 0.1.0

Easily add a developer GUI to any graphical application
Documentation
pub mod inspectable;
pub mod tree;

// Backends
#[cfg(feature = "sfml")]
pub mod sfml;

pub use egui;

#[cfg(feature = "derive")]
#[doc(hidden)]
pub use guiedit_derive::*;

pub use inspectable::Inspectable;
pub use tree::TreeNode;