mirror of
https://github.com/DerTyp7/harvestdale-unity.git
synced 2025-10-30 04:57:09 +01:00
tools
This commit is contained in:
14
Assets/Scripts/Items/Tool.cs
Normal file
14
Assets/Scripts/Items/Tool.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using UnityEngine;
|
||||
|
||||
|
||||
public abstract class Tool : Item
|
||||
{
|
||||
public abstract void Use();
|
||||
public abstract void OnUse();
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
stackable = false;
|
||||
maxStackSize = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user