14 lines
555 B
C
14 lines
555 B
C
//------------------------------------------------------------------------------
|
|
// EditorContext.h
|
|
// Header file for EditorContext class
|
|
//------------------------------------------------------------------------------
|
|
#ifndef IMGUI_NODE_EDITOR_EDITOR_CONTEXT_H
|
|
#define IMGUI_NODE_EDITOR_EDITOR_CONTEXT_H
|
|
|
|
// The EditorContext struct is defined in imgui_node_editor_internal.h
|
|
// This header is provided for consistency with the extracted implementation
|
|
#include "imgui_node_editor_internal.h"
|
|
|
|
#endif // IMGUI_NODE_EDITOR_EDITOR_CONTEXT_H
|
|
|