Files
example-top-down-unity/Assets/Scripts/Interactable.cs
2022-02-14 09:48:32 +01:00

21 lines
253 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Interactable : MonoBehaviour
{
void Start()
{
}
void Update()
{
}
public void interact()
{
}
}