Files
WickedEngine/Editor/ProfilerWindow.h
T
Stanislav Denisov d022decb17 Add editor options to disable rounded corners and gradients (#1239)
* Add editor options to disable rounded corners and gradients

* Use checkbox states to get editor option values
2025-10-13 16:40:22 +02:00

20 lines
433 B
C++

#pragma once
class EditorComponent;
class ProfilerWidget : public wi::gui::Widget
{
void Render(const wi::Canvas& canvas, wi::graphics::CommandList cmd) const override;
};
class ProfilerWindow : public wi::gui::Window
{
public:
void Create(EditorComponent* editor);
ProfilerWidget profilerWidget;
EditorComponent* editor = nullptr;
void Update(const wi::Canvas& canvas, float dt) override;
void ResizeLayout() override;
};