diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-03-15 19:47:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 19:47:39 +0100 |
commit | 99c1323a088333a5fc9109128d6d318bbceebf7d (patch) | |
tree | 2150802e63b4f58664ae21615dfa567c41b8f9b9 /modules/mono/csharp_script.h | |
parent | a8147d0f8bc1960f6b3d14bf8f049a47e75847b1 (diff) | |
parent | 700d07cf7cae4e28de107e0c274b27c857d98450 (diff) |
Merge pull request #17388 from Hinsbart/mono_class_name
Mono: Avoid invalid class names.
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 1f609627de..8666149111 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -294,6 +294,7 @@ public: virtual bool is_using_templates(); virtual void make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script); /* 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 String validate_path(const String &p_path) const; virtual Script *create_script() const; virtual bool has_named_classes() const; virtual bool supports_builtin_mode() const; |