Can someone please explain why we have two structs?
public struct InventorySlot
{
public InventoryItem item;
public int number;
}
And almost exact duplicate
private struct InventorySlotRecord
{
public string itemID;
public int number;
}
Why were we unable to use the same struct?
Thanks