mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-10-30 12:57:11 +01:00
5 lines
146 B
C#
5 lines
146 B
C#
public class ItemDictionary : Dictionary<ItemSO>
|
|
{
|
|
public override ItemSO GetEntryById(string id) => entries.Find(entry => entry.id == id);
|
|
}
|