Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
dhain 2022-05-20 08:57:48 +02:00
commit b902755495

View file

@ -4,6 +4,20 @@ using System.Collections.Generic;
using UnityEngine;
public class ItemContainer : MonoBehaviour {
#region Singleton
public static ItemContainer Instance;
private void Awake() {
if(Instance != null) {
Debug.LogWarning("More than one instance of ItemContainer found");
}
Instance = this;
}
#endregion
public Item[] allItems;
// Start is called before the first frame update
public Item GetItemByName(String name) {