10 lines
233 B
C#
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";
|
|
}
|
|
|