mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2026-07-31 19:29:03 +02: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);
|
|
}
|