using System.Collections; using System.Collections.Generic; using UnityEngine; using SiegeSong; namespace SiegeSong { public class InventoryRow : MonoBehaviour { public InventoryManager InventoryManager; public int ItemID; void Start() { } void Update() { } public void Activate() { InventoryManager.SelectedItemID = ItemID; InventoryManager.ActivateItem(); } } }