using UnityEngine; public class FarmManager : MonoBehaviour { public Inventory cropInventory; private void Start() { cropInventory = new Inventory(2, 200); } }