| 297 | } |
| 298 | |
| 299 | PyObject *py_ue_get_name(ue_PyUObject *self, PyObject * args) { |
| 300 | |
| 301 | ue_py_check(self); |
| 302 | |
| 303 | |
| 304 | return PyUnicode_FromString(TCHAR_TO_UTF8(*(self->ue_object->GetName()))); |
| 305 | } |
| 306 | |
| 307 | PyObject *py_ue_get_full_name(ue_PyUObject *self, PyObject * args) { |
| 308 |
nothing calls this directly
no outgoing calls
no test coverage detected