Please extend the `typename` API so it becomes possible for a framework style mod to find all the classes other modders have created based on your own. e.g.
```
int GetInheritedTypes(out array<typename> inheritedTypes)
```
And also expose the base class if there is any of a typename so you can freely navigate the inheritance tree up and down and go sideways by going to parent and then all its inherited types ...
````
typename GetBaseType()
```
Thank you!