first commit

This commit is contained in:
Janis
2023-02-12 16:22:41 +01:00
commit 9a4ece1ed4
6445 changed files with 378630 additions and 0 deletions

9
Assets/Scripts/Crop.cs Normal file
View File

@@ -0,0 +1,9 @@
using UnityEngine;
[CreateAssetMenu(fileName = "Crop", menuName = "Harvestdale/Crops", order = 0)]
public class Crop : ScriptableObject
{
public string cropName;
public int daysToGrow;
public bool isHarvestable;
}