mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-11-01 13:52:31 +01:00
5 lines
179 B
C#
5 lines
179 B
C#
public class PlacedObjectsDictionary : Dictionary<PlacedObjectTypeSO>
|
|
{
|
|
public override PlacedObjectTypeSO GetEntryById(string id) => entries.Find(entry => entry.id == id);
|
|
}
|