I'm currently trying to make my IMS vessels talk to each other to transfer propellant and consumables. While there are some hacky solutions to pull this off, it would be really nice if I could get a pointer to the actual IMS sub-class of the other vessel.
I looked at dynamic_cast, but that needs the base class to be polymorphic to allow casting from base to derivative. Currently, I'm pretty much wondering if it can be done at all, or if I have to go with my hack...
I looked at dynamic_cast, but that needs the base class to be polymorphic to allow casting from base to derivative. Currently, I'm pretty much wondering if it can be done at all, or if I have to go with my hack...