Example #1
0
        private void NextTurn()
        {
            if (_turnCnt > 0)
                _current.Freeze();
            _current = new Turn(this);
            Turns.Add(++_turnCnt, _current);

        }
Example #2
0
 protected Step(Turn t)
 {
     ThisTurn = t;
     OnStepStarted(new StepEventArgs(this));
 }
Example #3
0
 public RecoveryStep(Turn t) : base(t) { }
Example #4
0
 public PrepStep(Turn t) : base(t) { }