コード例 #1
0
        private MovesEndedViewController(MovesEndedView movesEndedView)
        {
            _movesEndedView = movesEndedView;
            _movesEndedView.MainMenuButtonClickEvent += OnMainMenuButtonClickHandler;
            _movesEndedView.RestartButtonClickEvent  += OnRestartButtonClickHandler;

            Hide();
        }
コード例 #2
0
ファイル: Factory.cs プロジェクト: XanoSage/Match2Test
 public static IMovesEndedViewController CreateMovesEndedViewController(MovesEndedView movesEndedView)
 {
     return(MovesEndedViewController.Create(movesEndedView));
 }