Would it be possible to refactor the script array code that handles management of object instances so that it can be easily used by other classes?
I'm trying to write a linked list class, and i have to copy over a lot of code from the array class to do the same kind of management.
The array variables that keep track of the object type, its size and subtype id are all basically reused, so that could all go into a class.