Upload Game

This commit is contained in:
Michał Gdula 2023-03-14 14:43:42 +00:00
parent b3f494d5c2
commit 18b63ffa9b
150 changed files with 85782 additions and 0 deletions

23
Assets/KeyScripts/Key.cs Normal file
View file

@ -0,0 +1,23 @@
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;
}
}