// Board looks like: // 0 1 2 3 4 5 // 0 1 2 3 4 // 0 1 2 3 4 5 // 0 1 2 3 4 public TrianglePegController(PegBoardView view, PegBoard model) : base(view, model) { }
public PegController(PegBoardView view, PegBoard model) { _view = view; _model = model; _view.SetController(this); }