Currently in Visual Basic 2010 my Turn-Based Table-Top card game I'm converting to computer I have it set for up to 5 players.
At the moment every player shares the same form. When a turn changes, all the checkboxes I have representing cards change to the next player.
I'm now on the unavoidable step of adding online play to the game. It doesn't matter if its simply a network game, or online.
Every player will see a message box when they are attacking seeing "such and such player was attacked", or "You have been attacked", or "you have attacked such and such player" Each player will also see only their cards, and not each players cards until it is there turn (like how I have it set up at the moment).
Currently player turns are held together by a variable I call T. When a turn is over, the variable is then switched. Updating the checkboxes to the proper players cards (Currently).