TheFrontRoomsGame/Assets/KeyScripts/Key.cs
2023-03-14 14:43:42 +00:00

23 lines
322 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
public class Key : MonoBehaviour
{
[SerializeField] private KeyType keyType;
public enum KeyType
{
Red,
Green,
Blue
}
public KeyType GetKeyType()
{
return keyType;
}
}