using UnityEngine; public interface IInteractable{ public void Interact(); public bool CanInteract(); public void CancelInteract(); public void OnObserverDetected(EnvironmentObserver observer); }