Exemple #1
0
        public GoLController(FrmGoLView paramView, GoLModel paramModel)
        {
            this.View  = paramView;
            this.Model = paramModel;

            this.Model.RegisterObserver(this);
        }
Exemple #2
0
        public GoLController(FrmGoLView paramView, int paramNbColumns, int paramNbLines)
        {
            this.View  = paramView;
            this.Model = new GoLModel(paramNbColumns, paramNbLines);

            this.Model.RegisterObserver(this);
        }