示例#1
0
        public void ResetSecondaryTimer()
        {
            if (_activeSecondary == null || _isLocked)
            {
                return;
            }

            _activeSecondary.ResetTimer();
        }
示例#2
0
        public void ResetPrimaryTimer()
        {
            if (_activePrimary == null || _isLocked)
            {
                return;
            }

            _activePrimary.ResetTimer();
        }