Exemple #1
0
 public static void PresentViewController(ViewController viewController, AnimationDirection animationDirection = AnimationDirection.Vertical)
 {
     _flowCoordinator.InvokeMethod <object, MultiplayerModeSelectionFlowCoordinator>("PresentViewController", new object[] {
         viewController, null, animationDirection, false
     });
 }
 public static void PresentViewController(ViewController viewController, Action finishedCallback = null, AnimationDirection animationDirection = AnimationDirection.Vertical, bool immediately = false)
 {
     _flowCoordinator.InvokeMethod <object, MultiplayerModeSelectionFlowCoordinator>("PresentViewController", new object[] {
         viewController, finishedCallback, animationDirection, immediately
     });
 }