mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 04:42:08 +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);
|
|
}
|
|
} |