From bf2839ea3ee280462fb9117a73bae407354ea832 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Wed, 4 Aug 2021 19:54:41 +0300 Subject: Add theme item descriptions to the online documentation --- core/doc_data.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/doc_data.h b/core/doc_data.h index 46ab697768..a3011fe275 100644 --- a/core/doc_data.h +++ b/core/doc_data.h @@ -116,6 +116,17 @@ public: } }; + struct ThemeItemDoc { + String name; + String type; + String data_type; + String description; + String default_value; + bool operator<(const ThemeItemDoc &p_theme_item) const { + return name < p_theme_item.name; + } + }; + struct TutorialDoc { String link; String title; @@ -133,7 +144,7 @@ public: Vector constants; Map enums; Vector properties; - Vector theme_properties; + Vector theme_properties; bool is_script_doc = false; String script_path; bool operator<(const ClassDoc &p_class) const { -- cgit v1.2.3