Ejemplo n.º 1
0
        protected override void UpdateDifficultyPoints(AimPoint aimPoint)
        {
            CurrentDiffPoints.Add(aimPoint);

            if (CurrentDiffPoints.Count == 4)
            {
                CurrentDiffPoints.RemoveAt(0);
            }
        }
Ejemplo n.º 2
0
        protected override void UpdateDifficultyPoints(ClickPoint clickPoint)
        {
            // Add diffPoint to currentDiffPoints
            CurrentDiffPoints.Add(clickPoint);

            // Update pool
            if (CurrentDiffPoints.Count == 3)
            {
                CurrentDiffPoints.RemoveAt(0);
            }
        }