21 lines
333 B
C#
21 lines
333 B
C#
|
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|