mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-26 11:21:06 +00:00
15 lines
199 B
C
15 lines
199 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "../../core/widget.h"
|
||
|
|
||
|
class ToolbarButton : public Widget
|
||
|
{
|
||
|
public:
|
||
|
ToolbarButton(Widget* parent);
|
||
|
~ToolbarButton();
|
||
|
|
||
|
protected:
|
||
|
void OnPaint(Canvas* canvas) override;
|
||
|
};
|