mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-29 20:52:10 +01:00
14 lines
197 B
C#
14 lines
197 B
C#
using UnityEngine;
|
|
|
|
|
|
public abstract class Tool : Item
|
|
{
|
|
public abstract void Use();
|
|
public abstract void OnUse();
|
|
|
|
private void Awake()
|
|
{
|
|
stackable = false;
|
|
maxStackSize = 1;
|
|
}
|
|
} |