mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 04:42:08 +01:00
14 lines
237 B
C#
14 lines
237 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Harvest", menuName = "Harvestdale/Items/Harvest", order = 0)]
|
|
public class Harvest : Item
|
|
{
|
|
[SerializeField]
|
|
private int price;
|
|
|
|
public int Price
|
|
{
|
|
get { return price; }
|
|
}
|
|
|
|
} |