Olympe Engine 2.0
2D Game Engine with ECS Architecture
Loading...
Searching...
No Matches
TemplateBrowserPanel.h
Go to the documentation of this file.
1/*
2 * Olympe Blueprint Editor - Template Browser Panel
3 *
4 * GUI panel for browsing, searching, and managing blueprint templates
5 */
6
7#pragma once
8
9#include <string>
10#include <vector>
11
12namespace Olympe
13{
14 /**
15 * TemplateBrowserPanel - ImGui panel for template management
16 * Provides interface for browsing, searching, applying, and deleting templates
17 */
19 {
20 public:
23
24 void Initialize();
25 void Shutdown();
26 void Render();
27
28 private:
31
32 // UI state
36 char m_SearchBuffer[256];
38
39 // Save as template modal state
43 };
44}
TemplateBrowserPanel - ImGui panel for template management Provides interface for browsing,...