9 lines
191 B
C#
9 lines
191 B
C#
using UnityEngine;
|
|
|
|
// This is the actual ITEM data structure for keeping track of inventory/item actions
|
|
public class Item : MonoBehaviour
|
|
{
|
|
public string itemName;
|
|
public int id;
|
|
}
|