mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 20:17:06 +03:00
17 lines
484 B
C++
17 lines
484 B
C++
#pragma once
|
|
|
|
#include <util/framework.h>
|
|
#include <rhi/rhi.h>
|
|
#include <renderer/renderer.h>
|
|
#include <imgui/ui.h>
|
|
#include "../widget.h"
|
|
|
|
class DownbarWidget : public Widget
|
|
{
|
|
public:
|
|
DownbarWidget(Editor* editor);
|
|
|
|
static void draw(bool bNewWindow, const engine::RuntimeModuleTickData& tickData, engine::VulkanContext* context, const std::string& name, ImGuiID ID);
|
|
|
|
virtual void onTick(const engine::RuntimeModuleTickData& tickData, engine::VulkanContext* context) override;
|
|
}; |