mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-30 04:57:09 +01:00
a
This commit is contained in:
10
Assets/Scripts/FarmManager.cs
Normal file
10
Assets/Scripts/FarmManager.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class FarmManager : MonoBehaviour
|
||||
{
|
||||
public Inventory<Crop> cropInventory;
|
||||
private void Start()
|
||||
{
|
||||
cropInventory = new Inventory<Crop>(2, 200);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user