mirror of
				https://github.com/DerTyp7/industrialize-unity.git
				synced 2025-10-31 13:27:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			224 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			224 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using UnityEngine;
 | |
| 
 | |
| public class ItemManager : MonoBehaviour
 | |
| {
 | |
|     public static ItemManager instance;
 | |
| 
 | |
|     private void Awake()
 | |
|     {
 | |
|         if (instance == null)
 | |
|         {
 | |
|             instance = this;
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
| 
 | |
| } | 
