Exemplo n.º 1
0
 public IDisposable Subscribe(IObserver <ShotInfo> observer)
 {
     return(delayTimer
            .Do(invokeInfo => shot.Start())
            .SelectMany(shot)
            .Subscribe(observer));
 }
        public void Start()
        {
            if (isStartIgnoring)
            {
                return;
            }

            shot.Start();

            isStartIgnoring = true;
        }
Exemplo n.º 3
0
 public void StartShooting()
 {
     shot.Start();
 }
Exemplo n.º 4
0
 public void Start()
 {
     shot.Start();
 }
Exemplo n.º 5
0
        public void Start()
        {
            shot.Start();

            hasStarted = true;
        }