Esempio 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;
        }
Esempio n. 3
0
 public void StartShooting()
 {
     shot.Start();
 }
Esempio n. 4
0
 public void Start()
 {
     shot.Start();
 }
Esempio n. 5
0
        public void Start()
        {
            shot.Start();

            hasStarted = true;
        }