Quantum-Engineering/InventorySlot.cs
2020-09-16 21:40:25 -05:00

10 lines
233 B
C#

using UnityEngine;
//! This object is used in arrays by the inventory manager to hold item names and amounts.
public class InventorySlot : MonoBehaviour
{
public int amountInSlot;
public string typeInSlot = "nothing";
}