I don't know whether I chose a good title or not but I'm developing a simple card-based game and this is my scenario:
I have a Class called Player and I have instantiated few objects ( lets say 4 ) from Player. On each round of game we have a special kind of player lets say SpecialPlayer that on each round one of those 4 Players can be SpecialPlayer.
SpecialPlayer is a simple Player plus it can do some more stuff, lets say pause/restart the game. So I inherited from the Player and created SpecialPlayer and added 2 methods to that class. The problem is , when I instantiate SpecialPlayer , I will have another object plus those 4 player objects , thats Ok, but I want to be able to change properties in SpecialPlayer and see the effects on the Player object who was SpecialPlayer on that round
For example each Player can Score points , I want to see that SpecialPlayer score a point and change the score and its effects on the Player object.
Is inheritance here is wrong? do I have to compose Player class in the SpecialPlayer class?
If it may change the answer , I have to say I'm using Ruby.