public BoardGame UpdateGame(BoardGame game) { throw new System.NotImplementedException(); }
public GamePlayer(BoardGame game, Player player, PlayerColor color) { Game = game; Player = player; Color = color; }
public ActionProcessor(BoardGame game) { _game = game; _validator = new ActionValidator(game); }