Hi all,
Hope you can help guide me here:
I am building as app and have different controllers per object. One Controller I have is, let's say, Car, and then I have separate controllers for engine, wheels, chassis, GPS. I know that for my car to access the wheels methods i can use:
But then how can my Car class also access the methods in the Engine, Chassis and GPS classes.
As I understand it, I can't extend to multiple classes. So do I just need to replicate the relevant Wheels methods in Car. It seems inefficient.
Thanks