public static int GetTotalRotationCount(this IRotatorPresenter presenter) { return(presenter.RotatorUseCase.TotalCount); }
public static void UpdateRotator(this IRotatorPresenter presenter, Vector3 position, Vector3 centerPosition) { presenter.RotatorUseCase.OnPressing(position, centerPosition); }
public static IObservable <int> GetRotationCountAsObservable(this IRotatorPresenter presenter) { return(presenter.RotatorUseCase.RotationCountAsObservable); }
public static void StartRotator(this IRotatorPresenter presenter, Vector3 position, Vector3 centerPosition) { presenter.RotatorUseCase.OnPressStart(position, centerPosition); }
public static IObservable <float> GetRotationSpeedAsObservable(this IRotatorPresenter presenter) { return(presenter.RotatorUseCase.RotationSpeedAsObservable); }