summaryrefslogtreecommitdiff
path: root/scene/gui/base_button.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-12-14 09:04:58 +0100
committerGitHub <noreply@github.com>2018-12-14 09:04:58 +0100
commitfc2038e128d0a38ecc159948d7e41a4a0abefa66 (patch)
tree87b23e7396b05df210583d29ecb9176121fc2464 /scene/gui/base_button.h
parent29a527fb9057afd534ea0d6ef6c4b36cc4b3deef (diff)
parentc2fe5c04684105fdfedbc6679f17acec12b3382c (diff)
Merge pull request #24341 from YeldhamDev/buttongroup_expose_get_buttons
Expose ButtonGroup's "get_buttons()" to GDScript
Diffstat (limited to 'scene/gui/base_button.h')
-rw-r--r--scene/gui/base_button.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/base_button.h b/scene/gui/base_button.h
index a131e719ad..272c07f68a 100644
--- a/scene/gui/base_button.h
+++ b/scene/gui/base_button.h
@@ -143,6 +143,7 @@ protected:
public:
BaseButton *get_pressed_button();
void get_buttons(List<BaseButton *> *r_buttons);
+ Array _get_buttons();
ButtonGroup();
};