static void Main()
 {
     Application.EnableVisualStyles();
       Application.SetCompatibleTextRenderingDefault(false);
       GameController game = new GameController();
       Application.Run(game.getView());
 }
        public yahtzeeController(GameController game)
        {
            _model = new yahtzeeModel();
              _view = new yahtzeeView(this);

              gameCont = game;
        }
 public teerlingController(GameController game)
 {
     _view = new teerlingView(this);
       _model = new teerlingModel();
       gameCont = game;
       _model.teerlingVast = true; // true => teerling kan gegooid worden
 }
        public scoreboardController(GameController game)
        {
            _model = new scoreboardModel(this);
              _view = new scorebordView(this);

              gameCont = game;
        }
 public GameView(GameController controller)
 {
     _controller = controller;
       InitializeComponent();
 }