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