コード例 #1
0
 protected MvxUnitySetup(MonoBehaviour applicationDelegate, IMvxUnityViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
コード例 #2
0
 public MvxUnityViewDispatcher(IMvxUnityViewPresenter presenter)
 {
     _presenter = presenter;
 }
コード例 #3
0
 public MvxUnityViewDispatcher(Action <Action> dispatcher, IMvxUnityViewPresenter presenter)
     : base(dispatcher)
 {
     _presenter = presenter;
 }
コード例 #4
0
 protected MvxUnitySetup(MonoBehaviour applicationDelegate, IMvxUnityViewPresenter presenter)
 {
     _presenter = presenter;
     _applicationDelegate = applicationDelegate;
 }
コード例 #5
0
 public MvxUnityViewDispatcher(Action<Action> dispatcher, IMvxUnityViewPresenter presenter)
     : base(dispatcher)
 {
     _presenter = presenter;
 }
コード例 #6
0
 protected MvxUnitySetup(MvxApplicationDelegate applicationDelegate, IMvxUnityViewPresenter presenter)
 {
     _applicationDelegate = applicationDelegate;
     _presenter = presenter;
 }