Example #1
0
 public Game(Interface.IPlayer player1, Interface.IPlayer player2, string gameID)
 {
     this.player1 = player1;
     this.player2 = player2;
     this.gameID = gameID;
 }
Example #2
0
 public Played(Interface.IPlayer player, string action, int point)
 {
     this.player = player;
     this.action = action;
     this.point = point;
 }