diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-09-20 21:49:02 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-10-29 12:34:57 -0500 |
commit | 6772ebcea00df6d01be5b333e7b5a5fff1c7a27a (patch) | |
tree | ea7175a5c1d91416a9777f7986efcd37b51118a4 /core/doc_data.h | |
parent | f7d852b5322104a90d45ef63c2ee54c937429487 (diff) | |
download | redot-engine-6772ebcea00df6d01be5b333e7b5a5fff1c7a27a.tar.gz |
Move the docs for constructors and operators out of methods section
Diffstat (limited to 'core/doc_data.h')
-rw-r--r-- | core/doc_data.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/doc_data.h b/core/doc_data.h index 19dec71927..c75cdfcde5 100644 --- a/core/doc_data.h +++ b/core/doc_data.h @@ -140,7 +140,9 @@ public: String brief_description; String description; Vector<TutorialDoc> tutorials; + Vector<MethodDoc> constructors; Vector<MethodDoc> methods; + Vector<MethodDoc> operators; Vector<MethodDoc> signals; Vector<ConstantDoc> constants; Map<String, String> enums; |