diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-17 23:28:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-17 23:28:15 +0200 |
| commit | 474f18512aa45e8055f3b409846b8fa5e000878f (patch) | |
| tree | bb181dc926ec55aa0c051b6efe4d18aeafb39cd8 /core/global_config.h | |
| parent | 68d79b21c36ee2208970ee45471c4423ef32e3f1 (diff) | |
| parent | c06a2db63a85c23fa35058f5bfd62245ed998951 (diff) | |
| download | redot-engine-474f18512aa45e8055f3b409846b8fa5e000878f.tar.gz | |
Merge pull request #8375 from Hinsbart/project_extension
Use .godot as file extension for project files.
Diffstat (limited to 'core/global_config.h')
| -rw-r--r-- | core/global_config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/global_config.h b/core/global_config.h index d0f64dc23c..5148c4377e 100644 --- a/core/global_config.h +++ b/core/global_config.h @@ -111,6 +111,8 @@ protected: void _add_property_info_bind(const Dictionary &p_info); + String project_file_name; + protected: static void _bind_methods(); @@ -124,6 +126,7 @@ public: Variant property_get_revert(const String &p_name); String get_resource_path() const; + String get_project_file_name() const; static GlobalConfig *get_singleton(); |
