Allow unicode class names

This commit is contained in:
David Snopek
2024-09-06 17:24:07 -05:00
parent d477589104
commit 536ea8561e
7 changed files with 34 additions and 7 deletions

View File

@@ -736,3 +736,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";
}