Files
GeoSusGame/Assets/Scripts/KeyIDManager.cs
2026-04-26 21:57:42 +02:00

21 lines
292 B
C#

using System;
using UnityEngine;
public class KeyIDManager : MonoBehaviour
{
public int KeyID;
void Start()
{
System.Random KeyID = new System.Random();
KeyID.Next(0,9);
}
// Update is called once per frame
void Update()
{
}
}