update inventory

This commit is contained in:
NguyenVanDat
2026-01-22 10:02:58 +07:00
parent 5c6a4bb628
commit 0e26b1b2dc
@@ -305,5 +305,15 @@ namespace BrewMonster.Scripts.Managers
{
return m_aItems.Length;
}
// Unfreeze all items
public void UnfreezeAllItems()
{
// Release all items
for (int i=0; i < m_aItems.Length; i++)
{
if (m_aItems[i] != null)
m_aItems[i].Freeze(false);
}
}
}
}