Files
example-top-down-unity/Assets/Scripts/TreeInteraction.cs
2022-02-14 17:12:18 +01:00

15 lines
372 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TreeInteraction : Interactable
{
public override string GetDescription() => "Baum muss schreie";
public override void Interact()
{
if(isInRange())
Debug.Log("AaaaaaaaaaAaAAaAaAAaAaAaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh");
}
}