Small asset clean-up

This commit is contained in:
2026-04-26 21:57:42 +02:00
parent 666f731b6d
commit f9ceea4992
10 changed files with 22 additions and 1198 deletions

View File

@@ -0,0 +1,20 @@
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()
{
}
}