WIP / UIGrid and related elements added in one giant leap. see TODO / BUGFIX in several places for incomplete functionality.

This commit is contained in:
John McCardle 2024-03-04 23:12:08 -05:00
commit 4dd4f74120
4 changed files with 762 additions and 14 deletions

View file

@ -137,6 +137,11 @@ PyObject* PyInit_mcrfpy()
PyModule_AddType(m, &mcrfpydef::PyUICollectionType);
PyModule_AddType(m, &mcrfpydef::PyUICollectionIterType);
PyModule_AddType(m, &mcrfpydef::PyUIGridPointType);
PyModule_AddType(m, &mcrfpydef::PyUIGridPointStateType);
PyModule_AddType(m, &mcrfpydef::PyUIEntityType);
PyModule_AddType(m, &mcrfpydef::PyUIGridType);
return m;