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

◆ IsStored()

bool CachedEquipmentStorageBase::IsStored ( Entity entity,
ECachedEquipmentItemCategory category )
inlineprotected

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

118 {
119 if (!m_ItemsCacheByCategory.Contains(category))
120 return false;
121
122 foreach (CachedEquipmentItemAttribute itemAttributes : m_ItemsCacheByCategory[category])
123 {
124 if (itemAttributes.m_Entity == entity)
125 return true;
126 }
127
128 return false;
129 }
ref map< ECachedEquipmentItemCategory, ref array< ref CachedEquipmentItemAttribute > > m_ItemsCacheByCategory
Определения CachedEquipmentStorageBase.c:53

Перекрестные ссылки m_ItemsCacheByCategory.