rabidus-test/Assets/Scripts/IInteractable.cs

9 lines
143 B
C#
Raw Permalink Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public interface IInteractable
2023-07-24 16:38:13 +03:00
{
public void Interact();
2023-07-24 16:38:13 +03:00
}