I am trying to understand how to implement multiple inheritance or MixIns in my program.
My thinking is that I have a Car class that uses MixIns to add methods from difference performance boosters like cold air intake and supercharger. So something like the below although I know this doesn't work.
car1 = Car(Turbocharger, ColdAirIntake)
car2 = Car(Supercharger)
car3 = Car(Nitrous)
I found this example, but wasn't sure if this was the proper way to do what I am thinking.