diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-08-06 04:05:15 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-08-06 15:56:46 +0200 |
commit | 775b9ee8893a176b6616a047e297d090399fb685 (patch) | |
tree | 560688054e8dfba56dcfbb25b9f3789e654a5326 /editor/project_converter_3_to_4.h | |
parent | 6b564749111eb418243021c4b67ccdf132bbc724 (diff) | |
download | redot-engine-775b9ee8893a176b6616a047e297d090399fb685.tar.gz |
Add conversion for the RPC attributes in C#
Diffstat (limited to 'editor/project_converter_3_to_4.h')
-rw-r--r-- | editor/project_converter_3_to_4.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/project_converter_3_to_4.h b/editor/project_converter_3_to_4.h index a58bb2767a..8526e2ceb9 100644 --- a/editor/project_converter_3_to_4.h +++ b/editor/project_converter_3_to_4.h @@ -55,6 +55,9 @@ private: Vector<String> check_for_rename_csharp_functions(Vector<String> &file_content); void process_csharp_line(String &line); + void rename_csharp_attributes(String &file_content); + Vector<String> check_for_rename_csharp_attributes(Vector<String> &file_content); + void rename_gdscript_keywords(String &file_content); Vector<String> check_for_rename_gdscript_keywords(Vector<String> &file_content); |