mirror of
https://github.com/kunkundi/crossdesk.git
synced 2026-04-03 18:58:54 +08:00
13 lines
295 B
C++
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;
|
|
} |