mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2026-07-31 19:29:03 +02:00
conveyorPO
This commit is contained in:
17
Assets/Scripts/Items/ItemManager.cs
Normal file
17
Assets/Scripts/Items/ItemManager.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class ItemManager : MonoBehaviour
|
||||
{
|
||||
public static ItemManager instance;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
if (instance == null)
|
||||
{
|
||||
instance = this;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user