update inventory
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user