Untitled

 avatar
unknown
csharp
2 years ago
197 B
5
Indexable
int newCells = backpack.unlockCells;
for (int i=0; i < inventoryCells.Count; i++)
{
    if (inventoryCells[i].IsUnlocked)
    {
        continue;
    }
    
    inventoryCells[i].Unlocked = true;
}
Editor is loading...