Original Post
Since C# does not support multiple inheritance I was wondering if anyone knew a good way to do the following. Basically I have 3 classes, and I'd like to use functionality in class 'PlayerInGame' from both 'Player' and 'SceneNode'. What's the best way to do this? I'd prefer not to include either of those classes IN PlayerInGame if possible. Player SceneNode PlayerInGame : Player, SceneNode Seems like a fairly simple problem, I'm just a C++ programmer having a C# brain freeze tonight. Thanks.