using System.Collections; using System.Collections.Generic; using UnityEngine; public class KeyItem : InteractableItem { [SerializeField] private string keyName; public string KeyName { get { return keyName; } } private void Awake() { BaseAwake(); } private void Start() { } }