mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-27 22:27:15 +01:00
CurveEdit needs to inherit from Button.
This commit is contained in:
parent
0ee27d830b
commit
59baf2088f
@ -1,13 +1,13 @@
|
||||
#ifndef CURVE_EDIT_H
|
||||
#define CURVE_EDIT_H
|
||||
|
||||
#include "scene/gui/control.h"
|
||||
#include "scene/gui/button.h"
|
||||
|
||||
class CurveView;
|
||||
class CurveBase;
|
||||
|
||||
class CurveEdit : public Control {
|
||||
GDCLASS(CurveEdit, Control);
|
||||
class CurveEdit : public Button {
|
||||
GDCLASS(CurveEdit, Button);
|
||||
|
||||
public:
|
||||
Ref<CurveBase> get_value();
|
||||
|
Loading…
Reference in New Issue
Block a user