mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
17 lines
271 B
C++
17 lines
271 B
C++
#ifndef TOOL_BUTTON_H
|
|
#define TOOL_BUTTON_H
|
|
|
|
/* tool_button.h */
|
|
|
|
|
|
#include "scene/gui/button.h"
|
|
|
|
class ToolButton : public Button {
|
|
GDCLASS(ToolButton, Button);
|
|
|
|
public:
|
|
ToolButton();
|
|
};
|
|
|
|
#endif // TOOL_BUTTON_H
|