We are compiling again! Started refactoring UICaption to be more idiomatic

This commit is contained in:
John McCardle 2024-04-10 23:10:15 -04:00
commit c186d8c7f3
11 changed files with 298 additions and 2474 deletions

View file

@ -75,4 +75,7 @@ int UIDrawable::set_click(PyObject* self, PyObject* value, void* closure) {
return 0;
}
void UIDrawable::click_register(PyObject* callable)
{
click_callable = std::make_unique<PyClickCallable>(callable);
}