Graphics v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
NodeEditor.h
1// Copyright 2022 ShenMian
2// License(Apache-2.0)
3
4#pragma once
5
6#include <unordered_map>
7#include <vector>
8
9struct ImNodesEditorContext;
10
11namespace ui
12{
13
14class Node;
15
20{
21public:
22 NodeEditor();
23 virtual ~NodeEditor();
24
25 void update();
26
27private:
28 ImNodesEditorContext* context_;
29 std::vector<Node> nodes_;
30};
31
32} // namespace ui
节点编辑器.
Definition: NodeEditor.h:20