mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 04:42:08 +01:00
12 lines
310 B
C#
12 lines
310 B
C#
using UnityEngine;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
[CreateAssetMenu(fileName = "Crop", menuName = "Harvestdale/Items/Crop", order = 0)]
|
|
public class Crop : Item
|
|
{
|
|
public int daysToGrow;
|
|
public List<Sprite> sprites = new List<Sprite>();
|
|
public Harvest harvest;
|
|
} |