diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-24 18:59:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 18:59:26 +0200 |
commit | 847c55bcb11337bd2d386347b299863f82a1be02 (patch) | |
tree | a3fd3327204845f108886419f6e28f6b5bc60b60 /modules/mono/csharp_script.h | |
parent | b44fb58c90e4c0f55da7b3b3292a7891d053e339 (diff) | |
parent | e218a13a64d417505ba8ca0abb79dddfb943f2c7 (diff) |
Merge pull request #12365 from neikeq/p
Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialog
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 6b8475fb61..8700b7fc5c 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -270,6 +270,7 @@ public: /* TODO */ virtual bool validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List<String> *r_functions) const { return true; } virtual Script *create_script() const; virtual bool has_named_classes() const; + virtual bool supports_builtin_mode() const; /* TODO? */ virtual int find_function(const String &p_function, const String &p_code) const { return -1; } virtual String make_function(const String &p_class, const String &p_name, const PoolStringArray &p_args) const; /* TODO? */ Error complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List<String> *r_options, String &r_call_hint) { return ERR_UNAVAILABLE; } |