mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 19:36:20 +03:00
12 lines
225 B
C++
12 lines
225 B
C++
#pragma once
|
|
#include "Pch.h"
|
|
#include "Widget.h"
|
|
|
|
class WidgetDownbar : public Widget
|
|
{
|
|
public:
|
|
WidgetDownbar();
|
|
~WidgetDownbar() = default;
|
|
|
|
virtual void onTick(const Flower::RuntimeModuleTickData& tickData) override;
|
|
}; |