Untitled
Anonymous
csharp
09/24/2023 12:01 PM
264 B
17
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...