diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-09-29 15:01:26 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-11-12 21:27:31 -0600 |
commit | ed9c7bf4509501af9a5482450359dcae69716097 (patch) | |
tree | 3352c28d9d237de289a29cb56b64091aa7c5e701 /editor/editor_vcs_interface.h | |
parent | 19571c9c4bb8c388ac5d9a0255a8c18c4680b7df (diff) | |
download | redot-engine-ed9c7bf4509501af9a5482450359dcae69716097.tar.gz |
Allow creating .gitignore and .gitattributes when creating a new project
Also allow creating these files later, and also allow disabling creating the default environment in editor settings.
Diffstat (limited to 'editor/editor_vcs_interface.h')
-rw-r--r-- | editor/editor_vcs_interface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/editor/editor_vcs_interface.h b/editor/editor_vcs_interface.h index 52ab6d68ee..1a2adeb148 100644 --- a/editor/editor_vcs_interface.h +++ b/editor/editor_vcs_interface.h @@ -61,6 +61,12 @@ public: static EditorVCSInterface *get_singleton(); static void set_singleton(EditorVCSInterface *p_singleton); + enum class VCSMetadata { + NONE, + GIT, + }; + static void create_vcs_metadata_files(VCSMetadata p_vcs_metadata_type, String &p_dir); + bool is_addon_ready(); // Proxy functions to the editor for use |