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

◆ IsItemInRecipe()

bool RecipeBase::IsItemInRecipe ( string item)
inlineprotected

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

594 {
595 for (int i = 0; i < MAX_NUMBER_OF_INGREDIENTS; i++)
596 {
597 array<string> ptr = m_Ingredients[i];
598
599 for (int x = 0; x < ptr.Count(); x++)
600 {
601 if (ptr.Get(x) == item) return true;
602 }
603 }
604 return false;
605 }
Icon x
const int MAX_NUMBER_OF_INGREDIENTS
Определения RecipeBase.c:1
ref array< string > m_Ingredients[MAX_NUMBER_OF_INGREDIENTS]
Определения RecipeBase.c:8

Перекрестные ссылки m_Ingredients, MAX_NUMBER_OF_INGREDIENTS и x.