mirror of
https://github.com/Project-Redacted/project-hampter.git
synced 2025-05-28 22:33:15 +00:00
23 lines
347 B
C#
23 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Key : MonoBehaviour
|
|
{
|
|
|
|
[SerializeField] private KeyType keyType;
|
|
public int KeyNumber;
|
|
public enum KeyType
|
|
{
|
|
Red,
|
|
Green,
|
|
Blue
|
|
}
|
|
|
|
public KeyType GetKeyType()
|
|
{
|
|
return keyType;
|
|
|
|
}
|
|
|
|
}
|