Voltray Engine Docs
Loading...
Searching...
No Matches
Toolbar.h
Go to the documentation of this file.
1#pragma once
2#include "../UI/Panel.h"
3
10namespace Editor::Components
11{
12 class Toolbar : public Panel
13 {
14 public:
15 void Draw() override;
16 };
17}
Definition Toolbar.h:13
void Draw() override
Pure virtual function to render the panel.
Definition Toolbar.cpp:9
Base class for all UI panels in the editor.
Definition Panel.h:19
Represents the Inspector panel component in the Editor.
Definition Console.cpp:7