mirror of
				https://github.com/DerTyp7/harvestdale-unity.git
				synced 2025-10-31 05:27:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using UnityEngine;
 | |
| 
 | |
| public class FarmManager : MonoBehaviour
 | |
| {
 | |
|   public Inventory<Crop> cropInventory;
 | |
|   private void Start()
 | |
|   {
 | |
|     cropInventory = new Inventory<Crop>(2, 200);
 | |
|   }
 | |
| } | 
