diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-11-28 23:42:37 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-11-29 00:36:05 +0100 |
commit | 66de28eda8239e006c5d53debdea75f131b32f77 (patch) | |
tree | 2a2049727d84c173e7e0a924350ce2cdd15e01ee /modules/mono/mono_gd/gd_mono.h | |
parent | 7735af7e768e16efb4b3b6de1c72c3dfb50c9412 (diff) | |
download | redot-engine-66de28eda8239e006c5d53debdea75f131b32f77.tar.gz |
Mono/C#: Add option to export assemblies outside of PCK
When using this options, assemblies will be saved in the Assemblies folder of the data directory: 'data_AppName/Assemblies/'.
Diffstat (limited to 'modules/mono/mono_gd/gd_mono.h')
-rw-r--r-- | modules/mono/mono_gd/gd_mono.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono.h b/modules/mono/mono_gd/gd_mono.h index e14a0d8409..7fb03b82ad 100644 --- a/modules/mono/mono_gd/gd_mono.h +++ b/modules/mono/mono_gd/gd_mono.h @@ -153,7 +153,8 @@ private: #ifdef TOOLS_ENABLED uint64_t api_editor_hash; #endif - void _initialize_and_check_api_hashes(); + void _init_godot_api_hashes(); + void _init_exception_policy(); GDMonoLog *gdmono_log; @@ -162,6 +163,7 @@ private: #endif void add_mono_shared_libs_dir_to_path(); + void determine_mono_dirs(String &r_assembly_rootdir, String &r_config_dir); protected: static GDMono *singleton; |