Files
harvestdale-unity/Assets/Scripts/FarmManager.cs
Janis ae0b21f9e9 a
2023-03-01 22:28:06 +01:00

10 lines
184 B
C#

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