28{
29 DrawHeader("Duplicate");
30 inputPins[0]->Render();
31 ImGui::Text("Value");
32 ImGui::Dummy(ImVec2(150, 20));
33 ImGui::SameLine();
34 ImGui::Text("Out 1");
35 outputPins[0]->Render();
36 ImGui::Dummy(ImVec2(150, 20));
37 ImGui::SameLine();
38 ImGui::Text("Out 2");
39 outputPins[1]->Render();
40 ImGui::Dummy(ImVec2(150, 20));
41 ImGui::SameLine();
42 ImGui::Text("Out 3");
43 outputPins[2]->Render();
44 ImGui::Dummy(ImVec2(150, 20));
45 ImGui::SameLine();
46 ImGui::Text("Out 4");
47 outputPins[3]->Render();
48}