This commit is contained in:
Janis
2022-06-03 22:53:35 +02:00
parent 87d77d2867
commit a31c6a16dd
21 changed files with 1005 additions and 7 deletions

View File

@@ -0,0 +1,4 @@
public class ItemDictionary : Dictionary<ItemSO>
{
public override ItemSO GetEntryById(string id) => entries.Find(entry => entry.id == id);
}