diff options
Diffstat (limited to 'editor/editor_help.h')
-rw-r--r-- | editor/editor_help.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/editor_help.h b/editor/editor_help.h index 6d9be3db6f..30a535a535 100644 --- a/editor/editor_help.h +++ b/editor/editor_help.h @@ -3,7 +3,7 @@ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ -/* http://www.godotengine.org */ +/* https://godotengine.org */ /*************************************************************************/ /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ @@ -123,6 +123,7 @@ class EditorHelp : public VBoxContainer { Map<String, int> property_line; Map<String, int> theme_property_line; Map<String, int> constant_line; + Map<String, int> enum_line; int description_line; RichTextLabel *class_desc; @@ -141,7 +142,7 @@ class EditorHelp : public VBoxContainer { bool scroll_locked; //void _button_pressed(int p_idx); - void _add_type(const String &p_type); + void _add_type(const String &p_type, const String &p_enum = String()); void _class_list_select(const String &p_select); void _class_desc_select(const String &p_select); |