node_editor 0.0.3

Node editor UI using imgui-rs as backend, made for aflak project
Documentation
use imgui::Ui;

pub trait ConstantEditor<T>: Default {
    /// Build editor for constant T and return true on change
    fn editor(&self, ui: &Ui, constant: &mut T) -> bool;
}