Hello. I am trying to get a variable in this way
public static Dictionary<int, ItemObject> Items { get; private set; }
Items = GlobalItemManager.Instance.GetValue <Dictionary <int, ItemObject >> ("_ items");
But the variable is empty. What am I doing wrong?
I need to get the list of items in Dictionary <int, ItemObject>.
public static Dictionary<int, ItemObject> Items { get; private set; }
Items = GlobalItemManager.Instance.GetValue <Dictionary <int, ItemObject >> ("_ items");
But the variable is empty. What am I doing wrong?
I need to get the list of items in Dictionary <int, ItemObject>.