sfdagsghds

This commit is contained in:
Janis Meister
2023-02-23 13:44:57 +01:00
parent 1a9bcccfba
commit f85588e144
5 changed files with 69 additions and 10 deletions

View File

@@ -5,11 +5,13 @@ public class Hoe : Tool
{
public override void OnUse()
{
throw new System.NotImplementedException();
Debug.Log("Hoe on use");
}
public override void Use()
{
Debug.Log("Hoe use");
OnUse();
}
}