mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 12:52:07 +01:00
9 lines
220 B
C#
9 lines
220 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Crop", menuName = "Harvestdale/Crops", order = 0)]
|
|
public class Crop : ScriptableObject
|
|
{
|
|
public string cropName;
|
|
public int daysToGrow;
|
|
public bool isHarvestable;
|
|
} |