You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Add override keywords.
This commit is contained in:
@@ -46,14 +46,14 @@ class MenuButton : public Button {
|
||||
Array _get_items() const;
|
||||
void _set_items(const Array &p_items);
|
||||
|
||||
void _gui_input(Ref<InputEvent> p_event);
|
||||
void _gui_input(Ref<InputEvent> p_event) override;
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
static void _bind_methods();
|
||||
|
||||
public:
|
||||
virtual void pressed();
|
||||
virtual void pressed() override;
|
||||
|
||||
PopupMenu *get_popup() const;
|
||||
void set_switch_on_hover(bool p_enabled);
|
||||
|
||||
Reference in New Issue
Block a user