- Added Guzimo's to the sceneview - Added new menu to the menubar - Improved multiple widgets (ImGui windows) - Added a new RuntimeControl widget (ImGui window) - New Screenshots
14 lines
259 B
C++
14 lines
259 B
C++
#pragma once
|
|
#include <imgui.h>
|
|
#include <string>
|
|
|
|
class EditorWindow {
|
|
|
|
public:
|
|
EditorWindow(const std::string& name, ImGuiWindowFlags_ flags = ImGuiWindowFlags_None ) { ImGui::Begin(name.c_str(), false ,flags); }
|
|
|
|
|
|
|
|
~EditorWindow() { ImGui::End(); }
|
|
|
|
}; |