_clientServerView = new ClientServerView(_display, this);
_typeGameView = new TypeGameView(_display, this);
_DifficultyView = new DifficultyView(_display, this);
_sudokuView = new SudokuView(_display, _grid, this);
_waitView = new WaitView(_display, this);
_logView = new LogView(_display, this);
_clientServerView.setParentAndChild(_clientServerView, _typeGameView);
_typeGameView.setParentAndChild(_clientServerView, _DifficultyView);
_DifficultyView.setParentAndChild(_typeGameView, _sudokuView);
_sudokuView.setParentAndChild(_DifficultyView, _sudokuView);