yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
popup_manager.h
Go to the documentation of this file.
1#ifndef YAZE_APP_EDITOR_POPUP_MANAGER_H
2#define YAZE_APP_EDITOR_POPUP_MANAGER_H
3
4#include <string>
5
6namespace yaze {
7namespace editor {
8
9struct PopupParams {
10 std::string name;
11};
12
13// ImGui popup manager.
15 public:
16
17 void Show(const char* name);
18
19 private:
20 std::vector<PopupParams> popups_;
21};
22
23} // namespace editor
24} // namespace yaze
25
26#endif // YAZE_APP_EDITOR_POPUP_MANAGER_H
void Show(const char *name)
std::vector< PopupParams > popups_
Editors are the view controllers for the application.
Main namespace for the application.
Definition controller.cc:18