mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-11 05:11:07 +00:00
14 lines
199 B
C++
14 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;
|
|
};
|