diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2020-11-06 14:24:38 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-06 14:24:38 -0300 |
| commit | 207f8c08b3f161ea0e84c3f51d4c86662633b5c9 (patch) | |
| tree | 1eb1930e9124c5ecf77840e80ebed64cbb85608c /core/string_name.h | |
| parent | 391d29f558d122798416b5957660d9eeceecd0f5 (diff) | |
| parent | f2397809a84c2bf0d41e6cb2092fa8f3c5a17850 (diff) | |
Merge pull request #43323 from reduz/variant-bind-rework2
Refactored Variant Operators.
Diffstat (limited to 'core/string_name.h')
| -rw-r--r-- | core/string_name.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/string_name.h b/core/string_name.h index 4f90479bda..937f25a496 100644 --- a/core/string_name.h +++ b/core/string_name.h @@ -155,6 +155,11 @@ public: ~StringName(); }; +bool operator==(const String &p_name, const StringName &p_string_name); +bool operator!=(const String &p_name, const StringName &p_string_name); +bool operator==(const char *p_name, const StringName &p_string_name); +bool operator!=(const char *p_name, const StringName &p_string_name); + StringName _scs_create(const char *p_chr); #endif // STRING_NAME_H |