conveyorPO

This commit is contained in:
Janis
2022-06-05 10:52:27 +02:00
parent a31c6a16dd
commit 831f1423b5
21 changed files with 473 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
public class ItemManager : MonoBehaviour
{
public static ItemManager instance;
private void Awake()
{
if (instance == null)
{
instance = this;
}
}
}