//------------------------------------------------------------------------------ // VERSION 0.9.1 // // LICENSE // This software is dual-licensed to the public domain and under the following // license: you are granted a perpetual, irrevocable license to copy, modify, // publish, and distribute this file as you see fit. // // CREDITS // Written by Michal Cichon //------------------------------------------------------------------------------ # include "imgui_node_editor_internal.h" # include # include # include # include # include # include # include # include # include # include namespace ed = ax::NodeEditor::Detail; // Forward declarations struct Node; struct Pin; struct Link; // Need to include app.h to access types, but we'll forward declare App class App; //------------------------------------------------------------------------------ // Block Edit Dialog //------------------------------------------------------------------------------ namespace ax { namespace NodeEditor { namespace Detail { bool ShowBlockEditDialog(Node* node, App* app); } // namespace Detail } // namespace NodeEditor } // namespace ax