Merge pull request #1574 from dsnopek/unicode-class-names

Allow unicode class names
This commit is contained in:
David Snopek
2024-10-29 13:09:45 -05:00
committed by GitHub
7 changed files with 34 additions and 7 deletions

View File

@@ -755,3 +755,11 @@ ExampleRuntime::ExampleRuntime() {
ExampleRuntime::~ExampleRuntime() {
}
void ExamplePrzykład::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_the_word"), &ExamplePrzykład::get_the_word);
}
String ExamplePrzykład::get_the_word() const {
return U"słowo to przykład";
}