mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 04:42:08 +01:00
15 lines
268 B
C#
15 lines
268 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "Hoe", menuName = "Harvestdale/Tools/Hoe", order = 0)]
|
|
public class Hoe : Tool
|
|
{
|
|
public override void OnUse()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public override void Use()
|
|
{
|
|
OnUse();
|
|
}
|
|
} |