in our first implementation of the game, we went too far down the rabbit hole and implemented all the classes based on the actor class with a lot of custom functionalities built around it.
Later we found out a lot more features we could benefit from if some of the enemy classes were driven from the character class.
The question is, is there any cost penalty if we drive all of our classes from the character class tough only a handful would use the features and this way we could keep the shared functionality ? Is there any overhead if a class is driven from character but not really using any of its character related features?