DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ SetRunning()

void SetRunning ( bool running)
protected

См. определение в файле tools.c строка 351

352 {
353 int index = -1;
354
355 if (m_running == running) return;
356
357 m_running = running;
358 if (m_timerQueue == NULL) return;
359
360 if (running)
361 {
362 if (m_timerQueue.Find(this) == -1)
363 {
364 m_timerQueue.Insert(this);
365 }
366 }
367 else
368 {
369 index = m_timerQueue.Find(this);
370 if (index != -1)
371 {
372 m_timerQueue.Remove(index);
373 }
374 }
375 }
class DragQueue extends CallQueue m_running
TimerBase Class provide just interface for all Timer classes. Don't instance this class,...
array< TimerBase > m_timerQueue
Определения tools.c:225

Перекрестные ссылки m_running и m_timerQueue.

Используется в Continue(), OnStart(), Pause(), AnimationTimer::Run(), Stop(), UniversalTemperatureSource::Stop(), Tick(), AnimationTimer::~AnimationTimer() и ~TimerBase().