コード例 #1
0
        public void InitializeControllers()
        {
            _arrowController = new ArrowController(_mazeController.Maze.Rows, _mazeController.Maze.Columns);
            _mclController   = new MCLController();

            _arrowController.ArrowChanged       += _arrowController_ArrowChanged;
            _arrowController.AnimationCompleted += _arrowController_AnimationCompleted;

            _count = 0;
        }
コード例 #2
0
ファイル: UIController.cs プロジェクト: riyaan/ADS4
        public void InitializeControllers()
        {
            _arrowController = new ArrowController(_mazeController.Maze.Rows, _mazeController.Maze.Columns);
            _mclController = new MCLController();

            _arrowController.ArrowChanged += _arrowController_ArrowChanged;
            _arrowController.AnimationCompleted += _arrowController_AnimationCompleted;

            _count = 0;
        }