Exemplo n.º 1
0
 public App()
 {
     _view            = new View();
     _controller      = new MC_Controller(_view);
     _view.Controller = _controller;
     //
 }
Exemplo n.º 2
0
 public App(View view)
 {
     _view            = view;
     _controller      = new MC_Controller(_view);
     _view.Controller = _controller;
 }
Exemplo n.º 3
0
 public App(V_MC_Vong3 view)
 {
     _view            = view;
     _controller      = new MC_Vong3_Controller(view);
     _view.Controller = _controller;
 }
Exemplo n.º 4
0
 public void SetController(MC_Controller ctrl)
 {
     _controller = ctrl;
 }
Exemplo n.º 5
0
 public App(V_Start view)
 {
     _view            = view;
     _controller      = new MC_Start_Controller(view);
     _view.Controller = _controller;
 }