Unravel Engine C++ Reference
Loading...
Searching...
No Matches
style_panel.h
Go to the documentation of this file.
1#pragma once
2
3#include <base/basetypes.hpp>
4#include <context/context.hpp>
5
6
7namespace unravel
8{
9class imgui_panels;
10
12{
13public:
15 void show(bool show = true);
16
17 void init(rtti::context& ctx);
18 void on_frame_ui_render();
19
20private:
21 imgui_panels* parent_;
22 bool visible_ = false;
23};
24} // namespace unravel
void init(rtti::context &ctx)
void show(bool show=true)
style_panel(imgui_panels *parent)