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

◆ OnStoreLoad()

bool SymptomManager::OnStoreLoad ( ParamsReadContext ctx,
int version )
inlineprivate

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

647 {
648 array<int> m_SaveQueue;
649
650 if (ctx.Read(m_SaveQueue))
651 {
652 for ( int i = 0; i < m_SaveQueue.Count(); i++ )
653 {
654 int id = m_SaveQueue.Get(i);
655
656 if ( IsSymptomPrimary(id) )
657 {
659 }
660 else
661 {
663 }
664 }
665 return true;
666 }
667 else
668 {
669 return false;
670 }
671 }
proto bool Read(void value_in)
void QueueUpSecondarySymptom(int symptom_id, int uid=-1)
Определения StateManager.c:508
bool IsSymptomPrimary(int symptom_id)
Определения StateManager.c:210
SymptomBase QueueUpPrimarySymptom(int symptom_id, int uid=-1)
Определения StateManager.c:473

Перекрестные ссылки IsSymptomPrimary(), QueueUpPrimarySymptom(), QueueUpSecondarySymptom() и Serializer::Read().