You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
Unify TextServer built-in module and GDExtension code.
This commit is contained in:
@@ -463,6 +463,12 @@ String String::operator+(const String &p_str) const {
|
||||
return res;
|
||||
}
|
||||
|
||||
String String::operator+(char32_t p_char) const {
|
||||
String res = *this;
|
||||
res += p_char;
|
||||
return res;
|
||||
}
|
||||
|
||||
String operator+(const char *p_chr, const String &p_str) {
|
||||
String tmp = p_chr;
|
||||
tmp += p_str;
|
||||
|
||||
Reference in New Issue
Block a user