This commit is contained in:
Janis
2023-02-16 17:59:39 +01:00
parent d079eb0b60
commit eb77bd85c0
4999 changed files with 73789 additions and 94339 deletions

View File

@@ -1,9 +1,11 @@
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
[CreateAssetMenu(fileName = "Crop", menuName = "Harvestdale/Crops", order = 0)]
public class Crop : ScriptableObject
{
public string cropName;
public int daysToGrow;
public bool isHarvestable;
public List<Sprite> sprites = new List<Sprite>();
}