Files
crossdesk/src/single_window/main_window.cpp

13 lines
295 B
C++

#include "render.h"
int Render::MainWindow() {
ImGui::SetNextWindowPos(ImVec2(0, 0), ImGuiCond_Always);
ImGui::SetNextWindowSize(ImVec2(main_window_width_, main_window_height_),
ImGuiCond_Always);
MenuWindow();
LocalWindow();
RemoteWindow();
return 0;
}