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