diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-16 10:18:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-16 10:18:17 +0200 |
| commit | c0293aca5967c49870b96b106425180e22a58c86 (patch) | |
| tree | b82364b32c7861733b5002642a83598793fd7d8f /modules/mono/utils/string_utils.h | |
| parent | edd881cd7068cdda4763229c2aa60c7bca0c2157 (diff) | |
| parent | 8ed3247a638a486afe165c3abdc6e0cdf0cddb84 (diff) | |
Merge pull request #12136 from neikeq/h
Improve signature of signal target generated function
Diffstat (limited to 'modules/mono/utils/string_utils.h')
| -rw-r--r-- | modules/mono/utils/string_utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/mono/utils/string_utils.h b/modules/mono/utils/string_utils.h index 2f2c3c2d89..a0d66ebdc3 100644 --- a/modules/mono/utils/string_utils.h +++ b/modules/mono/utils/string_utils.h @@ -35,4 +35,10 @@ String sformat(const String &p_text, const Variant &p1 = Variant(), const Variant &p2 = Variant(), const Variant &p3 = Variant(), const Variant &p4 = Variant(), const Variant &p5 = Variant()); +#ifdef TOOLS_ENABLED +bool is_csharp_keyword(const String &p_name); + +String escape_csharp_keyword(const String &p_name); +#endif + #endif // STRING_FORMAT_H |