Voltray Engine Docs
Loading...
Searching...
No Matches
OptionsPanel.h
Go to the documentation of this file.
1#pragma once
2#include "Panel.h"
3
4namespace Editor
5{
6 // Options/settings panel for the editor
7 class OptionsPanel : public Panel
8 {
9 public:
10 void Draw() override;
11 };
12} // namespace Editor
Definition OptionsPanel.h:8
void Draw() override
Pure virtual function to render the panel.
Definition OptionsPanel.cpp:6
Base class for all UI panels in the editor.
Definition Panel.h:19
Definition AssetsPanel.cpp:7