12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef GODOTSHARP_DIRS_H
- #define GODOTSHARP_DIRS_H
- #include "core/ustring.h"
- namespace GodotSharpDirs {
- String get_res_data_dir();
- String get_res_metadata_dir();
- String get_res_assemblies_dir();
- String get_res_config_dir();
- String get_res_temp_dir();
- String get_res_temp_assemblies_base_dir();
- String get_res_temp_assemblies_dir();
- String get_mono_user_dir();
- String get_mono_logs_dir();
- #ifdef TOOLS_ENABLED
- String get_mono_solutions_dir();
- String get_build_logs_dir();
- String get_project_sln_path();
- String get_project_csproj_path();
- String get_data_mono_bin_dir();
- String get_data_editor_tools_dir();
- String get_data_editor_prebuilt_api_dir();
- #endif
- String get_data_mono_etc_dir();
- String get_data_mono_lib_dir();
- }
- #endif
|